Files
asterisk/res/ais/ais.h
Russell Bryant ac53c0d94e Dump cache of published events when a node joins the cluster.
Also use a more reliable method for stopping the poll() thread.


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@359053 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-03-13 23:45:23 +00:00

58 lines
1.3 KiB
C

/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 2007, Digium, Inc.
*
* Russell Bryant <russell@digium.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*!
* \file
* \author Russell Bryant <russell@digium.com>
*
* \brief Usage of the SAForum AIS (Application Interface Specification)
*
* \arg http://www.openais.org/
*/
#ifndef RES_AIS_AIS_H
#define RES_AIS_AIS_H
#include <saAis.h>
#include <saClm.h>
#include <saEvt.h>
extern SaVersionT ais_version;
extern SaClmHandleT clm_handle;
extern SaEvtHandleT evt_handle;
int ast_ais_clm_load_module(void);
int ast_ais_clm_unload_module(void);
int ast_ais_evt_load_module(void);
int ast_ais_evt_unload_module(void);
const char *ais_err2str(SaAisErrorT error);
void ast_ais_evt_membership_changed(void);
enum ast_ais_cmd {
AST_AIS_CMD_EXIT,
AST_AIS_CMD_MEMBERSHIP_CHANGED,
};
int ast_ais_cmd(enum ast_ais_cmd cmd);
#endif /* RES_AIS_AIS_H */