/src/resiprocate/resip/stack/ExtensionParameter.cxx
Line | Count | Source (jump to first uncovered line) |
1 | | #if defined(HAVE_CONFIG_H) |
2 | | #include "config.h" |
3 | | #endif |
4 | | |
5 | | #include "ExtensionParameter.hxx" |
6 | | #include "ParameterTypeEnums.hxx" |
7 | | |
8 | | #include "rutil/ResipAssert.h" |
9 | | #include <string.h> |
10 | | |
11 | | using namespace resip; |
12 | | |
13 | | ExtensionParameter::ExtensionParameter(const Data& name) |
14 | 0 | : mName(name) |
15 | 0 | { |
16 | 0 | if (mName.empty()) |
17 | 0 | { |
18 | 0 | resip_assert(false); |
19 | 0 | throw Exception("Empty extension parameter",__FILE__,__LINE__); |
20 | 0 | } |
21 | 0 | } |
22 | | |
23 | | const Data& |
24 | | ExtensionParameter::getName() const |
25 | 0 | { |
26 | 0 | return mName; |
27 | 0 | } |
28 | | |
29 | | ExtensionParameter::Exception::Exception(const Data& msg, const Data& file, const int line) |
30 | 0 | : BaseException(msg, file, line) |
31 | 0 | {} |
32 | | |
33 | | const char* |
34 | | ExtensionParameter::Exception::name() const noexcept |
35 | 0 | { |
36 | 0 | return "ExtensionParameter::Exception"; |
37 | 0 | } |
38 | | |
39 | | /* ==================================================================== |
40 | | * The Vovida Software License, Version 1.0 |
41 | | * |
42 | | * Copyright (c) 2005 Vovida Networks, Inc. All rights reserved. |
43 | | * |
44 | | * Redistribution and use in source and binary forms, with or without |
45 | | * modification, are permitted provided that the following conditions |
46 | | * are met: |
47 | | * |
48 | | * 1. Redistributions of source code must retain the above copyright |
49 | | * notice, this list of conditions and the following disclaimer. |
50 | | * |
51 | | * 2. Redistributions in binary form must reproduce the above copyright |
52 | | * notice, this list of conditions and the following disclaimer in |
53 | | * the documentation and/or other materials provided with the |
54 | | * distribution. |
55 | | * |
56 | | * 3. The names "VOCAL", "Vovida Open Communication Application Library", |
57 | | * and "Vovida Open Communication Application Library (VOCAL)" must |
58 | | * not be used to endorse or promote products derived from this |
59 | | * software without prior written permission. For written |
60 | | * permission, please contact vocal@vovida.org. |
61 | | * |
62 | | * 4. Products derived from this software may not be called "VOCAL", nor |
63 | | * may "VOCAL" appear in their name, without prior written |
64 | | * permission of Vovida Networks, Inc. |
65 | | * |
66 | | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
67 | | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
68 | | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
69 | | * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
70 | | * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
71 | | * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
72 | | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
73 | | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
74 | | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
75 | | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
76 | | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
77 | | * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
78 | | * DAMAGE. |
79 | | * |
80 | | * ==================================================================== |
81 | | * |
82 | | * This software consists of voluntary contributions made by Vovida |
83 | | * Networks, Inc. and many individuals on behalf of Vovida Networks, |
84 | | * Inc. For more information on Vovida Networks, Inc., please see |
85 | | * <http://www.vovida.org/>. |
86 | | * |
87 | | */ |