forked from mirrors/linphone-iphone
add tcp keepalive value in factory file
This commit is contained in:
parent
25ae4525d7
commit
38833faa31
2 changed files with 5 additions and 2 deletions
|
|
@ -595,8 +595,6 @@ static void migrateWizardToAssistant(const char *entry, void *user_data) {
|
|||
reason:@"Linphone core not initialized yet"
|
||||
userInfo:nil]);
|
||||
}
|
||||
//Force keep alive to workaround push notif on chat message
|
||||
linphone_core_enable_keep_alive(theLinphoneCore, true);
|
||||
return theLinphoneCore;
|
||||
}
|
||||
|
||||
|
|
@ -1874,6 +1872,9 @@ void networkReachabilityCallBack(SCNetworkReachabilityRef target, SCNetworkReach
|
|||
|
||||
/** Should be called once per linphone_core_new() */
|
||||
- (void)finishCoreConfiguration {
|
||||
|
||||
//Force keep alive to workaround push notif on chat message
|
||||
linphone_core_enable_keep_alive(theLinphoneCore, true);
|
||||
|
||||
// get default config from bundle
|
||||
NSString *zrtpSecretsFileName = [LinphoneManager documentFile:@"zrtp_secrets"];
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@ sip_random_port=0
|
|||
#whether SIP passwords must be encrypted in configuration storage file
|
||||
store_ha1_passwd=0
|
||||
deliver_imdn=1
|
||||
#to avoid app to not detect broken sockets when in long running task.
|
||||
tcp_tls_keepalive=30000
|
||||
|
||||
[misc]
|
||||
#by default it is set to 30 by liblinphone
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue