added support for custom host

This commit is contained in:
Diego Waxemberg
2014-10-20 20:08:12 -04:00
parent 37428c8c77
commit 85ee4f6518
6 changed files with 35 additions and 7 deletions
+9
View File
@@ -19,4 +19,13 @@
return self;
}
- (id) initWithIp:(NSString*)host {
self = [super init];
self.hostName = host;
self.displayName = host;
return self;
}
@end