mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-23 12:44:19 +00:00
- pairing now exists - hostnames are resolved - video rendering is better - some other stuff I’m forgetting
20 lines
457 B
Objective-C
20 lines
457 B
Objective-C
//
|
|
// ConnectionHandler.h
|
|
// Limelight-iOS
|
|
//
|
|
// Created by Diego Waxemberg on 1/27/14.
|
|
// Copyright (c) 2014 Diego Waxemberg. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface ConnectionHandler : NSOperation
|
|
@property NSString* hostName;
|
|
@property int mode;
|
|
|
|
+ (void) pairWithHost:(NSString*)host;
|
|
+ (void) streamWithHost:(NSString*)host viewController:(UIViewController*)viewCont;
|
|
+ (NSString*) resolveHost:(NSString*)host;
|
|
|
|
@end
|