mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
Code organization in linphonemanager.h
This commit is contained in:
parent
52d607f04a
commit
e76abc7d5e
1 changed files with 9 additions and 10 deletions
|
|
@ -322,6 +322,14 @@ struct codec_name_pref_table codec_pref_table[]={
|
|||
[super dealloc];
|
||||
}
|
||||
|
||||
- (void)silentPushFailed:(NSTimer*)timer
|
||||
{
|
||||
if( silentPushCompletion ){
|
||||
[LinphoneLogger log:LinphoneLoggerLog format:@"silentPush failed, silentPushCompletion block: %p", silentPushCompletion ];
|
||||
silentPushCompletion(UIBackgroundFetchResultNoData);
|
||||
silentPushCompletion = nil;
|
||||
}
|
||||
}
|
||||
|
||||
#pragma mark - Database Functions
|
||||
|
||||
|
|
@ -2158,17 +2166,8 @@ static void audioRouteChangeListenerCallback (
|
|||
- (BOOL)lpConfigBoolForKey:(NSString*)key forSection:(NSString *)section {
|
||||
return [self lpConfigIntForKey:key forSection:section] == 1;
|
||||
}
|
||||
- (void)silentPushFailed:(NSTimer*)timer
|
||||
{
|
||||
if( silentPushCompletion ){
|
||||
[LinphoneLogger log:LinphoneLoggerLog format:@"silentPush failed, silentPushCompletion block: %p", silentPushCompletion ];
|
||||
silentPushCompletion(UIBackgroundFetchResultNoData);
|
||||
silentPushCompletion = nil;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#pragma GSM management
|
||||
#pragma mark - GSM management
|
||||
|
||||
-(void) removeCTCallCenterCb {
|
||||
if (mCallCenter != nil) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue