mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-03 00:06:31 +00:00
20 lines
423 B
Objective-C
20 lines
423 B
Objective-C
//
|
|
// DiscoveryWorker.h
|
|
// Limelight
|
|
//
|
|
// Created by Diego Waxemberg on 1/2/15.
|
|
// Copyright (c) 2015 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "Host.h"
|
|
|
|
@interface DiscoveryWorker : NSOperation
|
|
|
|
- (id) initWithHost:(Host*)host uniqueId:(NSString*)uniqueId cert:(NSData*)cert;
|
|
- (Host*) getHost;
|
|
|
|
+ (void) updateHost:(Host*)host withServerInfo:(NSData*)serverInfoData;
|
|
|
|
@end
|