]> git.ipfire.org Git - people/ms/mstpd.git/blob - ctl_socket_server.h
driver hooks for creating/deleting new MSTI
[people/ms/mstpd.git] / ctl_socket_server.h
1 /*****************************************************************************
2 Copyright (c) 2006 EMC Corporation.
3 Copyright (c) 2011 Factor-SPE
4
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the Free
7 Software Foundation; either version 2 of the License, or (at your option)
8 any later version.
9
10 This program is distributed in the hope that it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc., 59
17 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 The full GNU General Public License is included in this distribution in the
20 file called LICENSE.
21
22 Authors: Srinivas Aji <Aji_Srinivas@emc.com>
23 Authors: Vitalii Demianets <vitas@nppfactor.kiev.ua>
24
25 ******************************************************************************/
26
27 #ifndef CTL_SOCKET_SERVER_H
28 #define CTL_SOCKET_SERVER_H
29
30 int ctl_socket_init(void);
31 void ctl_socket_cleanup(void);
32
33 extern int ctl_in_handler;
34 void _ctl_err_log(char *fmt, ...);
35
36 #define ctl_err_log(_fmt...) ({ if (ctl_in_handler) _ctl_err_log(_fmt); })
37
38 #endif /* CTL_SOCKET_SERVER_H */