]> git.ipfire.org Git - people/ms/rstp.git/blame - ctl_cli_wrap.c
Merge remote-tracking branch 'upstream/master'
[people/ms/rstp.git] / ctl_cli_wrap.c
CommitLineData
ad02a0eb
SH
1/*****************************************************************************
2 Copyright (c) 2006 EMC Corporation.
3
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2 of the License, or (at your option)
7 any later version.
8
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 more details.
13
14 You should have received a copy of the GNU General Public License along with
15 this program; if not, write to the Free Software Foundation, Inc., 59
16 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 The full GNU General Public License is included in this distribution in the
19 file called LICENSE.
20
21 Authors: Srinivas Aji <Aji_Srinivas@emc.com>
22
23******************************************************************************/
24
25#include "ctl_functions.h"
26#include "ctl_socket.h"
27#include "ctl_socket_client.h"
28#include "log.h"
29
30CLIENT_SIDE_FUNCTION(enable_bridge_rstp)
b600a2c3
SA
31CLIENT_SIDE_FUNCTION(get_bridge_status)
32CLIENT_SIDE_FUNCTION(set_bridge_config)
33CLIENT_SIDE_FUNCTION(get_port_status)
34CLIENT_SIDE_FUNCTION(set_port_config)
35CLIENT_SIDE_FUNCTION(port_mcheck)
36CLIENT_SIDE_FUNCTION(set_debug_level)
ad02a0eb 37
11904a35 38void Dprintf(int level, const char *fmt, ...)
ad02a0eb 39{
11904a35
SH
40 char logbuf[256];
41 logbuf[sizeof(logbuf) - 1] = 0;
42 va_list ap;
43 va_start(ap, fmt);
44 vsnprintf(logbuf, sizeof(logbuf) - 1, fmt, ap);
45 va_end(ap);
46 printf("%s\n", logbuf);
ad02a0eb 47}