SIP Endpoint SDK for OS X
 All Classes Functions Properties
GSSipConnectionManager.h
1 //
2 // GSSipConnectionManager.h
3 // SipEndpoint
4 //
5 // Copyright (c) 2011-2018 Genesys Telecommunications Laboratories, Inc. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 #import "GSSipConnection.h"
10 #import "DefaultServices.h"
11 #import "DefaultServices.h"
12 #import "GSTestControl.h"
13 
15 @private
16  NSMutableArray* connections;
17  NSMutableArray* subscriptions;
18  id<GSConnectionNotificationDelegate> notificationDelegate;
19  id<GSMwiNotificationDelegate> mwiNotificationDelegate;
20 
21  id<GSMwiService> mwiService;
22  id<GSVideoService> videoService;
23 }
24 
25 @property (nonatomic, retain) NSMutableArray* connections;
26 @property (nonatomic, retain) NSMutableArray* subscriptions;
27 @property (nonatomic, retain) id<GSMwiService> mwiService;
28 @property (nonatomic, retain) id<GSVideoService> videoService;
29 
30 - (id) initWithLogger:(id<GSLogger>) theLogger
31  core:(GSepCore*) theCore;
32 
33 - (void) connectionStateChanged:(GSInternalConnectionEvent*) connectionEvent;
34 
35 @end