| 123456789101112131415161718192021222324 |
- //
- // NSNetService+Util.h
- // OneCable
- //
- // Created by KaRam Kim on 2017. 2. 15..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface NSNetService (Util)
- - (NSArray*) addressesAndPorts;
- @end
- @interface AddressAndPort : NSObject
- @property (nonatomic, assign) int port;
- @property (nonatomic, strong) NSString *address;
- @end
|