mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.0 KiB
53 lines
2.0 KiB
/*
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2012 Andrew Mortensen
|
|
*
|
|
* This file is part of the sca module for sip-router, a free SIP server.
|
|
*
|
|
* The sca module 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; either version 2 of the License, or
|
|
* (at your option) any later version
|
|
*
|
|
* The sca module 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*
|
|
*/
|
|
#ifndef SCA_RPC_H
|
|
#define SCA_RPC_H
|
|
|
|
#include "../../rpc.h"
|
|
#include "../../rpc_lookup.h"
|
|
|
|
extern const char *sca_rpc_show_all_subscriptions_doc[];
|
|
extern const char *sca_rpc_show_subscription_doc[];
|
|
extern const char *sca_rpc_show_subscribers_doc[];
|
|
extern const char *sca_rpc_deactivate_all_subscriptions_doc[];
|
|
extern const char *sca_rpc_deactivate_subscription_doc[];
|
|
extern const char *sca_rpc_show_all_appearances_doc[];
|
|
extern const char *sca_rpc_show_appearance_doc[];
|
|
extern const char *sca_rpc_seize_appearance_doc[];
|
|
extern const char *sca_rpc_update_appearance_doc[];
|
|
extern const char *sca_rpc_release_appearance_doc[];
|
|
|
|
void sca_rpc_show_all_subscriptions( rpc_t *, void * );
|
|
void sca_rpc_show_subscription( rpc_t *, void * );
|
|
void sca_rpc_show_subscribers( rpc_t *, void * );
|
|
void sca_rpc_deactivate_all_subscriptions( rpc_t *, void * );
|
|
void sca_rpc_deactivate_subscription( rpc_t *, void * );
|
|
void sca_rpc_show_all_appearances( rpc_t *, void * );
|
|
void sca_rpc_show_appearance( rpc_t *, void * );
|
|
void sca_rpc_seize_appearance( rpc_t *, void * );
|
|
void sca_rpc_update_appearance( rpc_t *, void * );
|
|
void sca_rpc_release_appearance( rpc_t *, void * );
|
|
|
|
#endif /* SCA_RPC_H */
|