1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
/*
* Copyright (c) 2002-2012 Balabit
* Copyright (c) 1998-2012 Balázs Scheidler
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "logproto-dgram-server.h"
#include "logproto-text-client.h"
#include "logproto-text-server.h"
#include "logproto-framed-client.h"
#include "logproto-framed-server.h"
#include "plugin.h"
#include "plugin-types.h"
/* This module defines various core-implemented LogProto implementations as
* plugins, so that modules may find them, dynamically based on their plugin
* name */
DEFINE_LOG_PROTO_SERVER(log_proto_dgram);
DEFINE_LOG_PROTO_CLIENT(log_proto_text);
DEFINE_LOG_PROTO_SERVER(log_proto_text);
DEFINE_LOG_PROTO_SERVER(log_proto_text_with_nuls);
DEFINE_LOG_PROTO_CLIENT(log_proto_framed);
DEFINE_LOG_PROTO_SERVER(log_proto_framed);
static Plugin framed_server_plugins[] =
{
/* there's no separate client side for the 'dgram' transport */
LOG_PROTO_CLIENT_PLUGIN(log_proto_text, "dgram"),
LOG_PROTO_SERVER_PLUGIN(log_proto_dgram, "dgram"),
LOG_PROTO_CLIENT_PLUGIN(log_proto_text, "text"),
LOG_PROTO_SERVER_PLUGIN(log_proto_text, "text"),
LOG_PROTO_SERVER_PLUGIN(log_proto_text_with_nuls, "text-with-nuls"),
LOG_PROTO_CLIENT_PLUGIN(log_proto_framed, "framed"),
LOG_PROTO_SERVER_PLUGIN(log_proto_framed, "framed"),
};
void
log_proto_register_builtin_plugins(PluginContext *context)
{
plugin_register(context, framed_server_plugins, G_N_ELEMENTS(framed_server_plugins));
}
|