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

« back to all changes in this revision

Viewing changes to modules/ipops/ipops_pv.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
 * $Id$
 
3
 *
 
4
 * Copyright (C) 2013 Daniel-Constantin Mierla (asipto.com)
 
5
 *
 
6
 * This file is part of Kamailio, a free SIP server.
 
7
 *
 
8
 * This file is free software; you can redistribute it and/or modify
 
9
 * it under the terms of the GNU General Public License as published by
 
10
 * the Free Software Foundation; either version 2 of the License, or
 
11
 * (at your option) any later version
 
12
 *
 
13
 *
 
14
 * This file is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
17
 * GNU General Public License for more details.
 
18
 *
 
19
 * You should have received a copy of the GNU General Public License
 
20
 * along with this program; if not, write to the Free Software
 
21
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
22
 *
 
23
 */
 
24
 
 
25
#ifndef _IPOPS_PV_H_
 
26
#define _IPOPS_PV_H_
 
27
 
 
28
#include "../../pvar.h"
 
29
 
 
30
int pv_parse_dns_name(pv_spec_t *sp, str *in);
 
31
int pv_get_dns(sip_msg_t *msg, pv_param_t *param,
 
32
                pv_value_t *res);
 
33
 
 
34
int dns_init_pv(char *path);
 
35
void dns_destroy_pv(void);
 
36
int dns_update_pv(str *tomatch, str *name);
 
37
 
 
38
#endif
 
39