1 |
#if !defined(DUM_CommandLineParser_hxx) |
2 |
#define DUM_CommandLineParser_hxx |
3 |
|
4 |
#include <vector> |
5 |
#include "resiprocate/Uri.hxx" |
6 |
#include "resiprocate/os/Data.hxx" |
7 |
|
8 |
namespace resip |
9 |
{ |
10 |
|
11 |
class CommandLineParser |
12 |
{ |
13 |
public: |
14 |
CommandLineParser(int argc, char** argv); |
15 |
static resip::Uri toUri(const char* input, const char* description); |
16 |
static std::vector<resip::Uri> toUriVector(const char* input, const char* description); |
17 |
|
18 |
|
19 |
Data mLogType; |
20 |
Data mLogLevel; |
21 |
bool mEncrypt; |
22 |
bool mSign; |
23 |
bool mGenUserCert; |
24 |
Data mTlsDomain; |
25 |
|
26 |
int mUdpPort; |
27 |
int mTcpPort; |
28 |
int mTlsPort; |
29 |
int mDtlsPort; |
30 |
|
31 |
int mRegisterDuration; |
32 |
bool mNoV4; |
33 |
bool mNoV6; |
34 |
|
35 |
Uri mAor; |
36 |
Data mPassword; |
37 |
|
38 |
Uri mOutboundProxy; |
39 |
Uri mContact; |
40 |
std::vector<Uri> mBuddies; |
41 |
Uri mTarget; |
42 |
Data mPassPhrase; |
43 |
Data mCertPath; |
44 |
}; |
45 |
|
46 |
} |
47 |
|
48 |
#endif |
49 |
|
50 |
|
51 |
/* ==================================================================== |
52 |
* The Vovida Software License, Version 1.0 |
53 |
* |
54 |
* Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. |
55 |
* |
56 |
* Redistribution and use in source and binary forms, with or without |
57 |
* modification, are permitted provided that the following conditions |
58 |
* are met: |
59 |
* |
60 |
* 1. Redistributions of source code must retain the above copyright |
61 |
* notice, this list of conditions and the following disclaimer. |
62 |
* |
63 |
* 2. Redistributions in binary form must reproduce the above copyright |
64 |
* notice, this list of conditions and the following disclaimer in |
65 |
* the documentation and/or other materials provided with the |
66 |
* distribution. |
67 |
* |
68 |
* 3. The names "VOCAL", "Vovida Open Communication Application Library", |
69 |
* and "Vovida Open Communication Application Library (VOCAL)" must |
70 |
* not be used to endorse or promote products derived from this |
71 |
* software without prior written permission. For written |
72 |
* permission, please contact vocal@vovida.org. |
73 |
* |
74 |
* 4. Products derived from this software may not be called "VOCAL", nor |
75 |
* may "VOCAL" appear in their name, without prior written |
76 |
* permission of Vovida Networks, Inc. |
77 |
* |
78 |
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
79 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
80 |
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
81 |
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
82 |
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
83 |
* IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
84 |
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
85 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
86 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
87 |
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
88 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
89 |
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
90 |
* DAMAGE. |
91 |
* |
92 |
* ==================================================================== |
93 |
* |
94 |
* This software consists of voluntary contributions made by Vovida |
95 |
* Networks, Inc. and many individuals on behalf of Vovida Networks, |
96 |
* Inc. For more information on Vovida Networks, Inc., please see |
97 |
* <http://www.vovida.org/>. |
98 |
* |
99 |
*/ |