diff options
Diffstat (limited to 'SmartDeviceLink/SDLTCPTransport.h')
-rw-r--r-- | SmartDeviceLink/SDLTCPTransport.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLTCPTransport.h b/SmartDeviceLink/SDLTCPTransport.h index 2c9f55805..ed8da7e41 100644 --- a/SmartDeviceLink/SDLTCPTransport.h +++ b/SmartDeviceLink/SDLTCPTransport.h @@ -3,11 +3,15 @@ #import "SDLAbstractTransport.h" +NS_ASSUME_NONNULL_BEGIN + @interface SDLTCPTransport : SDLAbstractTransport { - CFSocketRef socket; + _Nullable CFSocketRef socket; } -@property (strong, atomic) NSString *hostName; -@property (strong, atomic) NSString *portNumber; +@property (strong, nonatomic) NSString *hostName; +@property (strong, nonatomic) NSString *portNumber; @end + +NS_ASSUME_NONNULL_END |