1 |
#if defined(HAVE_CONFIG_HXX) |
2 |
#include "resiprocate/config.hxx" |
3 |
#endif |
4 |
|
5 |
#include <cstring> |
6 |
#include <cassert> |
7 |
|
8 |
#ifndef __APPLE__ |
9 |
bool TRUE=true; |
10 |
bool FALSE=false; |
11 |
#endif |
12 |
|
13 |
#include "UserAgent.hxx" |
14 |
#include "resiprocate/Security.hxx" |
15 |
#include "resiprocate/SipStack.hxx" |
16 |
#include "resiprocate/Uri.hxx" |
17 |
#include "resiprocate/os/Logger.hxx" |
18 |
|
19 |
using namespace resip; |
20 |
using namespace std; |
21 |
|
22 |
#define RESIPROCATE_SUBSYSTEM Subsystem::SIP |
23 |
|
24 |
int |
25 |
main(int argc, char* argv[]) |
26 |
{ |
27 |
try |
28 |
{ |
29 |
UserAgent ua(argc, argv); |
30 |
ua.startup(); |
31 |
|
32 |
InfoLog(<< argv[0] << " starting"); |
33 |
while(1) |
34 |
{ |
35 |
ua.process(); |
36 |
} |
37 |
} |
38 |
catch (BaseSecurity::Exception& e) |
39 |
{ |
40 |
WarningLog (<< "Couldn't set up security object"); |
41 |
exit(-1); |
42 |
} |
43 |
catch (BaseException& e) |
44 |
{ |
45 |
ErrLog (<< "Caught: " << e); |
46 |
exit(-1); |
47 |
} |
48 |
catch( ... ) |
49 |
{ |
50 |
ErrLog( << "Caught non-resip exception" ); |
51 |
exit(-1); |
52 |
} |
53 |
|
54 |
return 0; |
55 |
} |
56 |
|
57 |
/* ==================================================================== |
58 |
* The Vovida Software License, Version 1.0 |
59 |
* |
60 |
* Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. |
61 |
* |
62 |
* Redistribution and use in source and binary forms, with or without |
63 |
* modification, are permitted provided that the following conditions |
64 |
* are met: |
65 |
* |
66 |
* 1. Redistributions of source code must retain the above copyright |
67 |
* notice, this list of conditions and the following disclaimer. |
68 |
* |
69 |
* 2. Redistributions in binary form must reproduce the above copyright |
70 |
* notice, this list of conditions and the following disclaimer in |
71 |
* the documentation and/or other materials provided with the |
72 |
* distribution. |
73 |
* |
74 |
* 3. The names "VOCAL", "Vovida Open Communication Application Library", |
75 |
* and "Vovida Open Communication Application Library (VOCAL)" must |
76 |
* not be used to endorse or promote products derived from this |
77 |
* software without prior written permission. For written |
78 |
* permission, please contact vocal@vovida.org. |
79 |
* |
80 |
* 4. Products derived from this software may not be called "VOCAL", nor |
81 |
* may "VOCAL" appear in their name, without prior written |
82 |
* permission of Vovida Networks, Inc. |
83 |
* |
84 |
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
85 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
86 |
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
87 |
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
88 |
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
89 |
* IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
90 |
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
91 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
92 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
93 |
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
94 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
95 |
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
96 |
* DAMAGE. |
97 |
* |
98 |
* ==================================================================== |
99 |
* |
100 |
* This software consists of voluntary contributions made by Vovida |
101 |
* Networks, Inc. and many individuals on behalf of Vovida Networks, |
102 |
* Inc. For more information on Vovida Networks, Inc., please see |
103 |
* <http://www.vovida.org/>. |
104 |
* |
105 |
*/ |