OpeVPNTransportStats lastPacketReceived NSInteger -> NSDate (#21)

* Add NSCopying, NSSecureCoding Support to Informational Classes

* Remove Redundant Copies

* Revert out-of-context typo corrections

* Revert out-of-context changes

* Convert lastPacketReceived to NSDate

* Add NSCopying, NSSecureCoding Support to Informational Classes

* Revert out-of-context changes

* Convert lastPacketReceived to NSDate
This commit is contained in:
Jonathan Downing
2017-09-16 19:59:57 +03:00
committed by Sergey Abramchuk
parent 270d5b8cac
commit bfa8ab801a
2 changed files with 7 additions and 8 deletions
+2 -3
View File
@@ -34,9 +34,8 @@
@property (readonly, nonatomic) NSInteger packetsOut;
/**
Number of binary milliseconds (1/1024th of a second) since
last packet was received, or -1 if undefined
Date when last packet was received, or nil if undefined
*/
@property (readonly, nonatomic) NSInteger lastPacketReceived;
@property (readonly, nonatomic, nullable) NSDate *lastPacketReceived;
@end