summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLTCPTransport.h
blob: 2c9f55805860f8b5a2dc19a2b720eb1a0a3f5a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//  SDLTCPTransport.h
//

#import "SDLAbstractTransport.h"

@interface SDLTCPTransport : SDLAbstractTransport {
    CFSocketRef socket;
}

@property (strong, atomic) NSString *hostName;
@property (strong, atomic) NSString *portNumber;

@end