mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
67868597bb
Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header Adjusted year(s) in copyright header Added GPL copyright text my_vle.h, rpl_utility.h, my_vle.c, base64-t.c, rpl_utility.cc: Changed copyright header formatting some plugin_example.c, daemon_example.c: Added "Copyright (C) 2006 MySQL AB" to GPL header
89 lines
2.2 KiB
C
89 lines
2.2 KiB
C
/* Copyright (C) 2006 MySQL AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
|
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
#include <mysql_version.h>
|
|
#include <mysql/plugin.h>
|
|
|
|
/*
|
|
#if !defined(__attribute__) && (defined(__cplusplus) || !defined(__GNUC__) || __GNUC__ == 2 && __GNUC_MINOR__ < 8)
|
|
#define __attribute__(A)
|
|
#endif
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
Initialize the daemon example at server start or plugin installation.
|
|
|
|
SYNOPSIS
|
|
daemon_example_plugin_init()
|
|
|
|
DESCRIPTION
|
|
Does nothing.
|
|
|
|
RETURN VALUE
|
|
0 success
|
|
1 failure (cannot happen)
|
|
*/
|
|
|
|
static int daemon_example_plugin_init(void *p)
|
|
{
|
|
return(0);
|
|
}
|
|
|
|
|
|
/*
|
|
Terminate the daemon example at server shutdown or plugin deinstallation.
|
|
|
|
SYNOPSIS
|
|
daemon_example_plugin_deinit()
|
|
Does nothing.
|
|
|
|
RETURN VALUE
|
|
0 success
|
|
1 failure (cannot happen)
|
|
|
|
*/
|
|
|
|
static int daemon_example_plugin_deinit(void *p)
|
|
{
|
|
return(0);
|
|
}
|
|
|
|
struct st_mysql_daemon daemon_example_plugin=
|
|
{ MYSQL_DAEMON_INTERFACE_VERSION };
|
|
|
|
/*
|
|
Plugin library descriptor
|
|
*/
|
|
|
|
mysql_declare_plugin(daemon_example)
|
|
{
|
|
MYSQL_DAEMON_PLUGIN,
|
|
&daemon_example_plugin,
|
|
"daemon_example",
|
|
"Brian Aker",
|
|
"Daemon example that tests init and deinit of a plugin",
|
|
PLUGIN_LICENSE_GPL,
|
|
daemon_example_plugin_init, /* Plugin Init */
|
|
daemon_example_plugin_deinit, /* Plugin Deinit */
|
|
0x0100 /* 1.0 */,
|
|
NULL, /* status variables */
|
|
NULL, /* system variables */
|
|
NULL /* config options */
|
|
}
|
|
mysql_declare_plugin_end;
|