realtimenetprots/sipfw/SIP/NATTraversalController/Api/sipnattraversalcontrollerinitparams.h
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Name : sipnattraversalcontrollerinitparams.h |
|
16 * Part of : SIP NAT Traversal Controller |
|
17 * Version : SIP/5.0 |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 |
|
23 #ifndef TSIPNATTRAVERSALCONTROLLERINITPARAMS_H |
|
24 #define TSIPNATTRAVERSALCONTROLLERINITPARAMS_H |
|
25 |
|
26 // INCLUDES |
|
27 #include <e32base.h> |
|
28 #include <es_sock.h> |
|
29 |
|
30 // CLASS DECLARATION |
|
31 /** |
|
32 * @publishedPartner |
|
33 * @released |
|
34 * |
|
35 * Initialization parameters for SIP NAT Traversal Controller ECOM plug-in(s). |
|
36 */ |
|
37 class TSIPNATTraversalControllerInitParams |
|
38 { |
|
39 public: // Constructors and destructor |
|
40 |
|
41 /** |
|
42 * Constructor. |
|
43 * @param aSocketServ an opened socket server handle |
|
44 */ |
|
45 TSIPNATTraversalControllerInitParams(RSocketServ& aSocketServ); |
|
46 |
|
47 public: // Data |
|
48 |
|
49 RSocketServ& iSocketServ; |
|
50 }; |
|
51 |
|
52 #include "sipnattraversalcontrollerinitparams.inl" |
|
53 |
|
54 #endif // TSIPNATTRAVERSALCONTROLLERINITPARAMS_H |