Coverage Report

Created: 2024-07-23 06:39

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