-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Always On instead of separate dedicated instance. Trivial fixes
- Loading branch information
1 parent
96d6a9e
commit 9a945cb
Showing
7 changed files
with
59 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
|
||
char AOR[] = "sip:[email protected]"; | ||
// elastic | ||
char REGISTRAR[] = "54.225.212.193:5080"; | ||
char REGISTRAR[] = "23.23.228.238:5080"; | ||
//char REGISTRAR[] = "192.168.2.32:5080"; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,10 +69,10 @@ - (void)viewDidLoad | |
[self.view addGestureRecognizer:tapGesture]; | ||
#ifdef DEBUG | ||
// set some defaults when in debug to avoid typing | ||
self.sipUriText.text = @"sip:1235@54.225.212.193:5080"; | ||
self.sipUriText.text = @"sip:1235@23.23.228.238:5080"; | ||
//self.sipUriText.text = @"sip:[email protected]:5080"; | ||
#else | ||
self.sipUriText.text = @"sip:1235@54.225.212.193:5080"; | ||
self.sipUriText.text = @"sip:1235@23.23.228.238:5080"; | ||
#endif | ||
|
||
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(register:) name:UIApplicationDidBecomeActiveNotification object:nil]; | ||
|