Skip to content

Commit

Permalink
OutboundProxyPort and STUNServerPort are 0 by default. (Let AKTelepho…
Browse files Browse the repository at this point in the history
…ne setters provide appropriate value.)
  • Loading branch information
eofster committed Jan 14, 2009
1 parent 3a65eba commit 743a6f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AppController.m
Expand Up @@ -89,9 +89,9 @@ + (void)initialize
NSMutableDictionary *defaultsDict = [NSMutableDictionary dictionary];

[defaultsDict setObject:@"" forKey:AKOutboundProxyHost];
[defaultsDict setObject:[NSNumber numberWithInteger:5060] forKey:AKOutboundProxyPort];
[defaultsDict setObject:[NSNumber numberWithInteger:0] forKey:AKOutboundProxyPort];
[defaultsDict setObject:@"" forKey:AKSTUNServerHost];
[defaultsDict setObject:[NSNumber numberWithInteger:3478] forKey:AKSTUNServerPort];
[defaultsDict setObject:[NSNumber numberWithInteger:0] forKey:AKSTUNServerPort];
[defaultsDict setObject:[NSNumber numberWithBool:YES] forKey:AKVoiceActivityDetection];
[defaultsDict setObject:@"~/Library/Logs/Telephone.log" forKey:AKLogFileName];
[defaultsDict setObject:[NSNumber numberWithInteger:3] forKey:AKLogLevel];
Expand Down

0 comments on commit 743a6f3

Please sign in to comment.