mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 14:45:34 +00:00
25 lines
527 B
Objective-C
25 lines
527 B
Objective-C
//
|
|
// ServerInfoResponse.h
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 2/1/15.
|
|
// Copyright (c) 2015 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "HttpResponse.h"
|
|
|
|
#define TAG_HOSTNAME @"hostname"
|
|
#define TAG_EXTERNAL_IP @"ExternalIP"
|
|
#define TAG_LOCAL_IP @"LocalIP"
|
|
#define TAG_UNIQUE_ID @"uniqueid"
|
|
#define TAG_MAC_ADDRESS @"mac"
|
|
#define TAG_PAIR_STATUS @"PairStatus"
|
|
|
|
@interface ServerInfoResponse : HttpResponse <Response>
|
|
|
|
- (void) populateWithData:(NSData *)data;
|
|
- (void) populateHost:(Host*)host;
|
|
|
|
@end
|
|
|