Coverage Report

Created: 2023-09-25 06:23

/src/resiprocate/resip/stack/Pkcs8Contents.hxx
Line
Count
Source (jump to first uncovered line)
1
#ifndef RESIP_Pkcs8Contents_hxx
2
#define RESIP_Pkcs8Contents_hxx
3
4
#include "resip/stack/Contents.hxx"
5
#include "rutil/Data.hxx"
6
7
namespace resip
8
{
9
10
/**
11
   @ingroup sip_payload
12
   @brief SIP body type for holding PKCS8 contents (MIME content-type application/pkcs8).
13
*/
14
class Pkcs8Contents : public Contents
15
{
16
   public:
17
      static const Pkcs8Contents Empty;
18
19
      Pkcs8Contents();
20
      Pkcs8Contents(const Data& text);
21
      Pkcs8Contents(const HeaderFieldValue& hfv, const Mime& contentType);
22
      Pkcs8Contents(const Data& data, const Mime& contentType);
23
      Pkcs8Contents(const Pkcs8Contents& rhs);
24
      virtual ~Pkcs8Contents();
25
      Pkcs8Contents& operator=(const Pkcs8Contents& rhs);
26
27
      /** @brief duplicate an Pkcs8Contents object
28
          @return pointer to a new Pkcs8Contents object  
29
        **/
30
      virtual Contents* clone() const;
31
32
      static const Mime& getStaticType() ;
33
34
      virtual EncodeStream& encodeParsed(EncodeStream& str) const;
35
      virtual void parse(ParseBuffer& pb);
36
37
0
      Data& text() {checkParsed(); return mText;}
38
39
      static bool init();
40
      
41
   private:
42
      Data mText;
43
};
44
45
}
46
47
#endif
48
49
/* ====================================================================
50
 * The Vovida Software License, Version 1.0 
51
 * 
52
 * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
53
 * 
54
 * Redistribution and use in source and binary forms, with or without
55
 * modification, are permitted provided that the following conditions
56
 * are met:
57
 * 
58
 * 1. Redistributions of source code must retain the above copyright
59
 *    notice, this list of conditions and the following disclaimer.
60
 * 
61
 * 2. Redistributions in binary form must reproduce the above copyright
62
 *    notice, this list of conditions and the following disclaimer in
63
 *    the documentation and/or other materials provided with the
64
 *    distribution.
65
 * 
66
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
67
 *    and "Vovida Open Communication Application Library (VOCAL)" must
68
 *    not be used to endorse or promote products derived from this
69
 *    software without prior written permission. For written
70
 *    permission, please contact vocal@vovida.org.
71
 *
72
 * 4. Products derived from this software may not be called "VOCAL", nor
73
 *    may "VOCAL" appear in their name, without prior written
74
 *    permission of Vovida Networks, Inc.
75
 * 
76
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
77
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
78
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
79
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
80
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
81
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
82
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
83
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
84
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
85
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
86
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
87
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
88
 * DAMAGE.
89
 * 
90
 * ====================================================================
91
 * 
92
 * This software consists of voluntary contributions made by Vovida
93
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
94
 * Inc.  For more information on Vovida Networks, Inc., please see
95
 * <http://www.vovida.org/>.
96
 *
97
 */