File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 23
23
namespace chip {
24
24
namespace DeviceLayer {
25
25
26
- uint16_t getUserDefaultDnssdSRPTimeoutInMSecs ()
27
- {
28
- NSUserDefaults * defaults = [[NSUserDefaults alloc ] initWithSuiteName: kUserDefaultDomain ];
29
- NSInteger srpTimeoutValue = [defaults integerForKey: kSRPTimeoutInMsecsUserDefaultKey ];
30
- return (srpTimeoutValue < UINT16_MAX) ? static_cast <uint16_t >(srpTimeoutValue) : 0 ;
31
- }
26
+ uint16_t getUserDefaultDnssdSRPTimeoutInMSecs ()
27
+ {
28
+ NSUserDefaults * defaults = [[NSUserDefaults alloc ] initWithSuiteName: kUserDefaultDomain ];
29
+ NSInteger srpTimeoutValue = [defaults integerForKey: kSRPTimeoutInMsecsUserDefaultKey ];
30
+ return (srpTimeoutValue < UINT16_MAX) ? static_cast <uint16_t >(srpTimeoutValue) : 0 ;
31
+ }
32
32
33
33
} // namespace DeviceLayer
34
34
} // namespace chip
You can’t perform that action at this time.
0 commit comments