NSNetService+Util.h 383 B

123456789101112131415161718192021222324
  1. //
  2. // NSNetService+Util.h
  3. // OneCable
  4. //
  5. // Created by KaRam Kim on 2017. 2. 15..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface NSNetService (Util)
  10. - (NSArray*) addressesAndPorts;
  11. @end
  12. @interface AddressAndPort : NSObject
  13. @property (nonatomic, assign) int port;
  14. @property (nonatomic, strong) NSString *address;
  15. @end