Coverage Report

Created: 2023-09-25 06:23

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