| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- /*
- * presence module - presence server implementation
- *
- * 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
- *
- */
- /*! \file
- * \brief Kamailio presence module :: Utility functions
- * \ref utils_func.c
- * \ingroup presence
- */
- #ifndef UTILS_FUNC_H
- #define UTILS_FUNC_H
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include "../../mem/mem.h"
- #include "../../dprint.h"
- #include "../../str.h"
- #include "../../parser/msg_parser.h"
- #include "../../parser/parse_event.h"
- #define LCONTACT_BUF_SIZE 1024
- #define BAD_EVENT_CODE 489
- #define INTERVAL_TOO_BRIEF 423
- #define EVENT_DIALOG_SLA(ev) \
- ((ev)->type == EVENT_DIALOG \
- && ((ev)->params.hooks.event_dialog.sla \
- || (ev)->params.hooks.event_dialog.ma))
- static inline int uandd_to_uri(str user, str domain, str *out)
- {
- int size;
- if(out==0)
- return -1;
- size = user.len + domain.len+7;
- out->s = (char*)pkg_malloc(size);
- if(out->s == NULL)
- {
- LM_ERR("no more memory\n");
- return -1;
- }
- strcpy(out->s,"sip:");
- out->len = 4;
- if(user.s!=NULL && user.len>0)
- {
- memcpy(out->s+out->len, user.s, user.len);
- out->len += user.len;
- out->s[out->len++] = '@';
- }
- memcpy(out->s + out->len, domain.s, domain.len);
- out->len += domain.len;
- out->s[out->len] = '\0';
-
- return 0;
- }
- static inline int ps_fill_local_contact(struct sip_msg* msg, str *contact)
- {
- str ip;
- char* proto;
- int port;
- int len;
- int plen;
- contact->s= (char*)pkg_malloc(LCONTACT_BUF_SIZE);
- if(contact->s== NULL)
- {
- LM_ERR("No more memory\n");
- goto error;
- }
- memset(contact->s, 0, LCONTACT_BUF_SIZE);
- contact->len= 0;
-
- plen = 3;
- if(msg->rcv.proto== PROTO_NONE || msg->rcv.proto==PROTO_UDP)
- proto= "udp";
- else
- if(msg->rcv.proto== PROTO_TLS )
- proto= "tls";
- else
- if(msg->rcv.proto== PROTO_TCP)
- proto= "tcp";
- else
- if(msg->rcv.proto== PROTO_SCTP) {
- proto= "sctp";
- plen = 4;
- }
- else
- if(msg->rcv.proto== PROTO_WS || msg->rcv.proto== PROTO_WSS) {
- proto= "ws";
- plen = 2;
- }
- else
- {
- LM_ERR("unsupported proto\n");
- goto error;
- }
-
- ip.s= ip_addr2a(&msg->rcv.dst_ip);
- if(ip.s== NULL)
- {
- LM_ERR("transforming ip_addr to ascii\n");
- goto error;
- }
- ip.len= strlen(ip.s);
- port = msg->rcv.dst_port;
- if(strncmp(ip.s, "sip:", 4)!=0)
- {
- strncpy(contact->s, "sip:", 4);
- contact->len+= 4;
- }
- strncpy(contact->s+contact->len, ip.s, ip.len);
- contact->len += ip.len;
- if(contact->len> LCONTACT_BUF_SIZE - 21)
- {
- LM_ERR("buffer overflow\n");
- goto error;
- }
- len= sprintf(contact->s+contact->len, ":%d;transport=" , port);
- if(len< 0)
- {
- LM_ERR("unsuccessful sprintf\n");
- goto error;
- }
- contact->len+= len;
- strncpy(contact->s+ contact->len, proto, plen);
- contact->len += plen;
-
- return 0;
- error:
- if(contact->s!=NULL)
- pkg_free(contact->s);
- contact->s = 0;
- contact->len = 0;
- return -1;
- }
- //str* int_to_str(long int n);
- int a_to_i (char *s,int len);
- void to64frombits(unsigned char *out, const unsigned char *in, int inlen);
- int send_error_reply(struct sip_msg* msg, int reply_code, str reply_str);
- #endif
|