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.
kamailio/modules/presence_xml/xcap_auth.h

51 lines
1.6 KiB

/*
* $Id: xcap_auth.h 1337 2006-12-07 18:05:05Z anca_vamanu $
*
* presence_xml module -
*
* Copyright (C) 2006 Voice Sistem S.R.L.
*
* This file is part of Kamailio, a free SIP server.
*
* Kamailio 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
*
* Kamailio 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* History:
* --------
* 2007-04-12 initial version (anca)
*/
/*! \file
* \brief Kamailio Presence_XML :: XCAP authentication
* \ref xcap_auth.c
* \ingroup presence_xml
*/
#ifndef _AUTH_XML_H_
#define _AUTH_XML_H_
#include <libxml/parser.h>
#include "../../str.h"
#include "../presence/subscribe.h"
#include "../xcap_client/xcap_callbacks.h"
int pres_watcher_allowed(subs_t* subs);
xmlNodePtr get_rule_node(subs_t* subs, xmlDocPtr xcap_tree );
int get_rules_doc(str* user, str* domain, str *file_uri, int type, str** rules_doc);
int pres_get_rules_doc(str* user, str* domain, str** rules_doc);
int pres_get_pidf_doc(str *user, str *domain, str *file_uri, str **rules_doc);
#endif