switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Utils / Logger / SyslogUDPTarget.cci
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief SyslogUDPTarget inline non-template implementation */
30
31 //#include "SyslogUDPTarget.ih"
32
33 // Custom includes
34 #include <senf/Socket/Protocols/INet/ConnectedUDPSocketHandle.hh>
35 #include <senf/Utils/String.hh>
36
37 #define prefix_ inline
38 //-/////////////////////////////////////////////////////////////////////////////////////////////////
39
40 prefix_ senf::log::SyslogUDPTarget::SyslogUDPTarget(INet4Address const & target, int facility)
41     : Target("udp-" + senf::str(target)), LogFormat(consoleDir()), facility_ (facility),
42       handle_ ( ConnectedUDPv4ClientSocketHandle(INet4SocketAddress(target, 514u)) ),
43       syslogFormat_ (true)
44 {
45     init();
46 }
47
48 prefix_ senf::log::SyslogUDPTarget::SyslogUDPTarget(INet4SocketAddress const & target, int facility)
49     : Target("udp-" + senf::str(target)), LogFormat(consoleDir()), facility_ (facility),
50       handle_ ( ConnectedUDPv4ClientSocketHandle(target) ),
51       syslogFormat_ (true)
52 {
53     init();
54 }
55
56 prefix_ senf::log::SyslogUDPTarget::SyslogUDPTarget(INet6Address const & target, int facility)
57     : Target("udp-" + senf::str(target)), LogFormat(consoleDir()), facility_ (facility),
58       handle_ ( ConnectedUDPv6ClientSocketHandle(INet6SocketAddress(target, 514u)) ),
59       syslogFormat_ (true)
60 {
61     init();
62 }
63
64 prefix_ senf::log::SyslogUDPTarget::SyslogUDPTarget(INet6SocketAddress const & target, int facility)
65     : Target("udp-" + senf::str(target)), LogFormat(consoleDir()), facility_ (facility),
66       handle_ ( ConnectedUDPv6ClientSocketHandle(target) ),
67       syslogFormat_ (true)
68 {
69     init();
70 }
71
72 prefix_ bool senf::log::SyslogUDPTarget::syslog()
73     const
74 {
75     return syslogFormat_;
76 }
77
78 prefix_ void senf::log::SyslogUDPTarget::syslog(bool enabled)
79 {
80     syslogFormat_ = enabled;
81 }
82
83 //-/////////////////////////////////////////////////////////////////////////////////////////////////
84 #undef prefix_
85
86 \f
87 // Local Variables:
88 // mode: c++
89 // fill-column: 100
90 // comment-column: 40
91 // c-file-style: "senf"
92 // indent-tabs-mode: nil
93 // ispell-local-dictionary: "american"
94 // compile-command: "scons -u test"
95 // End: