Coverage Report

Created: 2026-04-01 07:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/resiprocate/resip/stack/RportParameter.hxx
Line
Count
Source
1
#if !defined(RESIP_RPORTPARAMETER_HXX)
2
#define RESIP_RPORTPARAMETER_HXX 
3
4
#include <iosfwd>
5
6
#include "resip/stack/ParameterTypeEnums.hxx"
7
#include "resip/stack/Parameter.hxx"
8
#include "rutil/PoolBase.hxx"
9
10
namespace resip
11
{
12
13
class ParseBuffer;
14
15
/**
16
   @ingroup sip_grammar
17
18
   @brief Represents the "response-port" element of the SIP grammar
19
   (as extended in RFC 3581).
20
*/
21
class RportParameter : public Parameter
22
{
23
   public:
24
      typedef RportParameter Type;
25
26
      RportParameter(ParameterTypes::Type, ParseBuffer& pb, const std::bitset<256>& terminators);
27
      RportParameter(ParameterTypes::Type type, int value);
28
      explicit RportParameter(ParameterTypes::Type type);
29
      
30
      static Parameter* decode(ParameterTypes::Type type, 
31
                                 ParseBuffer& pb, 
32
                                 const std::bitset<256>& terminators,
33
                                 PoolBase* pool)
34
0
      {
35
0
         return new (pool) RportParameter(type, pb, terminators);
36
0
      }
37
38
0
      int& port() {return mValue;}
39
0
      int port() const {return mValue;}
40
41
0
      bool hasValue() const { return mHasValue; } 
42
43
      virtual EncodeStream& encode(EncodeStream& stream) const;
44
45
      virtual Parameter* clone() const;
46
      
47
0
      Type& value() { return *this; }
48
   private:
49
50
      int mValue;
51
      bool mHasValue;
52
};
53
 
54
}
55
56
#endif
57
58
/* ====================================================================
59
 * The Vovida Software License, Version 1.0 
60
 * 
61
 * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
62
 * 
63
 * Redistribution and use in source and binary forms, with or without
64
 * modification, are permitted provided that the following conditions
65
 * are met:
66
 * 
67
 * 1. Redistributions of source code must retain the above copyright
68
 *    notice, this list of conditions and the following disclaimer.
69
 * 
70
 * 2. Redistributions in binary form must reproduce the above copyright
71
 *    notice, this list of conditions and the following disclaimer in
72
 *    the documentation and/or other materials provided with the
73
 *    distribution.
74
 * 
75
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
76
 *    and "Vovida Open Communication Application Library (VOCAL)" must
77
 *    not be used to endorse or promote products derived from this
78
 *    software without prior written permission. For written
79
 *    permission, please contact vocal@vovida.org.
80
 *
81
 * 4. Products derived from this software may not be called "VOCAL", nor
82
 *    may "VOCAL" appear in their name, without prior written
83
 *    permission of Vovida Networks, Inc.
84
 * 
85
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
86
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
87
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
88
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
89
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
90
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
91
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
92
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
93
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
94
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
95
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
96
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
97
 * DAMAGE.
98
 * 
99
 * ====================================================================
100
 * 
101
 * This software consists of voluntary contributions made by Vovida
102
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
103
 * Inc.  For more information on Vovida Networks, Inc., please see
104
 * <http://www.vovida.org/>.
105
 *
106
 */