~ubuntu-branches/debian/sid/kamailio/sid

« back to all changes in this revision

Viewing changes to modules/htable/ht_dmq.h

  • Committer: Package Import Robot
  • Author(s): Victor Seva
  • Date: 2014-01-06 11:47:13 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140106114713-t8xidp4arzrnyeya
Tags: 4.1.1-1
* New upstream release
* debian/patches:
  - add upstream fixes
* Added tls outbound websocket autheph dnssec modules
  - openssl exception added to their license
* removing sparc and ia64 from supported archs
  for mono module (Closes: #728915)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 *
 
3
 * Copyright (C) 2013 Charles Chance (Sipcentric Ltd)
 
4
 *
 
5
 * This file is part of Kamailio, a free SIP server.
 
6
 *
 
7
 * Kamailio is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * (at your option) any later version
 
11
 *
 
12
 * Kamailio is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License 
 
18
 * along with this program; if not, write to the Free Software 
 
19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
20
 */
 
21
 
 
22
#ifndef _HT_DMQ_H_
 
23
#define _HT_DMQ_H_
 
24
 
 
25
#include "../dmq/bind_dmq.h"
 
26
#include "../../lib/srutils/srjson.h"
 
27
#include "../../parser/msg_parser.h"
 
28
#include "../../parser/parse_content.h"
 
29
 
 
30
extern dmq_api_t ht_dmqb;
 
31
extern dmq_peer_t* ht_dmq_peer;
 
32
extern dmq_resp_cback_t ht_dmq_resp_callback;
 
33
 
 
34
typedef enum {
 
35
                HT_DMQ_NONE,
 
36
        HT_DMQ_SET_CELL,
 
37
        HT_DMQ_SET_CELL_EXPIRE,
 
38
        HT_DMQ_DEL_CELL,
 
39
        HT_DMQ_RM_CELL_RE
 
40
} ht_dmq_action_t;
 
41
 
 
42
int ht_dmq_initialize();
 
43
int ht_dmq_handle_msg(struct sip_msg* msg, peer_reponse_t* resp);
 
44
int ht_dmq_replicate_action(ht_dmq_action_t action, str* htname, str* cname, int type, int_str* val, int mode);
 
45
int ht_dmq_replay_action(ht_dmq_action_t action, str* htname, str* cname, int type, int_str* val, int mode);
 
46
int ht_dmq_resp_callback_f(struct sip_msg* msg, int code, dmq_node_t* node, void* param);
 
47
 
 
48
#endif