-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnsProxyConfig.h
More file actions
45 lines (33 loc) · 898 Bytes
/
nsProxyConfig.h
File metadata and controls
45 lines (33 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "linphone/linphonecore.h"
#include "nsCOMPtr.h"
#include "nsWeakPtr.h"
#include "nsServiceManagerUtils.h"
#include "nsComponentManagerUtils.h"
#include "nsISupports.h"
#include "nsStringAPI.h"
#include "nsMemory.h"
#include "nsXPCOMCIDInternal.h"
#include "nsISIP.h"
#define PROXYCFG_CONTRACTID "@alcacoop.it/voip/proxy-config;1"
#define PROXYCFG_CLASSNAME "SIP Proxy configuration object"
#define PROXYCFG_CID { 0x3b88b334, 0x2836, 0x4ed5, { 0x9c, 0x5c, 0x49, 0x36, 0xdc, 0x9b, 0x73, 0xc5} }
class nsProxyConfig : public nsIProxyConfig
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPROXYCONFIG
nsProxyConfig();
private:
~nsProxyConfig();
nsCString sip_identity;
nsCString sip_proxy;
nsCString sip_route;
nsCString userid;
nsCString password;
long int duration;
protected:
/* additional members */
};