mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 14:45:34 +00:00
- now store host uuid and mac address - use uuid to check for duplicate hosts - try local and external IPs - pair status is shown - server status is shown - validate host when manually adding
24 lines
339 B
Objective-C
24 lines
339 B
Objective-C
//
|
|
// Host.m
|
|
// Limelight
|
|
//
|
|
// Created by Diego Waxemberg on 10/28/14.
|
|
// Copyright (c) 2014 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "Host.h"
|
|
|
|
|
|
@implementation Host
|
|
|
|
@dynamic name;
|
|
@dynamic address;
|
|
@dynamic localAddress;
|
|
@dynamic externalAddress;
|
|
@dynamic uuid;
|
|
@dynamic mac;
|
|
@dynamic pairState;
|
|
@synthesize online;
|
|
|
|
@end
|