Coverage Report

Created: 2023-06-07 06:03

/src/resiprocate/resip/stack/TransportFailure.hxx
Line
Count
Source (jump to first uncovered line)
1
#ifndef RESIP_TransportFailure_hxx
2
#define RESIP_TransportFailure_hxx
3
4
#include <iosfwd>
5
#include "resip/stack/TransactionMessage.hxx"
6
#include "rutil/Data.hxx"
7
#include "rutil/HeapInstanceCounter.hxx"
8
9
namespace resip
10
{
11
12
/** This message is used to indicate that the TransportSelector has sent a sip
13
    message using either reliable or unreliable transport
14
*/
15
class TransportFailure : public TransactionMessage
16
{
17
   public:
18
      RESIP_HeapCount(TransportFailure);
19
      enum FailureReason
20
      {
21
         None = 0, //invalid
22
         TransportNoExistConn,
23
         Failure,
24
         TransportNoSocket,
25
         TransportBadConnect,
26
         TransportShutdown,
27
         ConnectionUnknown,
28
         ConnectionException,
29
         NoTransport,
30
         NoRoute,
31
         CertNameMismatch,
32
         CertValidationFailure
33
      };
34
35
      TransportFailure(const Data& transactionId, FailureReason f, int subCode=0);
36
37
      virtual const Data& getTransactionId() const;
38
      virtual bool isClientTransaction() const;
39
40
0
      FailureReason getFailureReason() const { return mFailureReason; }
41
0
      int getFailureSubCode() const { return mFailureSubCode; }
42
43
      virtual EncodeStream& encodeBrief(EncodeStream& str) const;
44
      virtual EncodeStream& encode(EncodeStream& strm) const;
45
46
   private:
47
      Data mTransactionId;
48
      FailureReason mFailureReason;
49
      int mFailureSubCode;
50
};
51
52
}
53
54
#endif
55
56
/* ====================================================================
57
 * The Vovida Software License, Version 1.0
58
 *
59
 * Redistribution and use in source and binary forms, with or without
60
 * modification, are permitted provided that the following conditions
61
 * are met:
62
 *
63
 * 1. Redistributions of source code must retain the above copyright
64
 *    notice, this list of conditions and the following disclaimer.
65
 *
66
 * 2. Redistributions in binary form must reproduce the above copyright
67
 *    notice, this list of conditions and the following disclaimer in
68
 *    the documentation and/or other materials provided with the
69
 *    distribution.
70
 *
71
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
72
 *    and "Vovida Open Communication Application Library (VOCAL)" must
73
 *    not be used to endorse or promote products derived from this
74
 *    software without prior written permission. For written
75
 *    permission, please contact vocal@vovida.org.
76
 *
77
 * 4. Products derived from this software may not be called "VOCAL", nor
78
 *    may "VOCAL" appear in their name, without prior written
79
 *    permission of Vovida Networks, Inc.
80
 *
81
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
82
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
83
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
84
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
85
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
86
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
87
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
88
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
89
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
90
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
91
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
92
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
93
 * DAMAGE.
94
 *
95
 * ====================================================================
96
 *
97
 * This software consists of voluntary contributions made by Vovida
98
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
99
 * Inc.  For more information on Vovida Networks, Inc., please see
100
 * <http://www.vovida.org/>.
101
 *
102
 * vi: set shiftwidth=3 expandtab:
103
 */