eXosip2.h 28 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
/*
  eXosip - This is the eXtended osip library.
  Copyright (C) 2001-2020 Aymeric MOIZARD amoizard@antisip.com

  eXosip 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.

  eXosip 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

  In addition, as a special exception, the copyright holders give
  permission to link the code of portions of this program with the
  OpenSSL library under certain conditions as described in each
  individual source file, and distribute linked combinations
  including the two.
  You must obey the GNU General Public License in all respects
  for all of the code used other than OpenSSL.  If you modify
  file(s) with this exception, you may extend this exception to your
  version of the file(s), but you are not obligated to do so.  If you
  do not wish to do so, delete this exception statement from your
  version.  If you delete this exception statement from all source
  files in the program, then also delete it here.
*/

#ifndef __EXOSIP2_H__
#define __EXOSIP2_H__

#if defined(HAVE_CONFIG_H)
#include <exosip-config.h>
#endif

#define HAVE_INET_NTOP

#if defined(__PALMOS__) && (__PALMOS__ >= 0x06000000)
#define HAVE_CTYPE_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_TIME_H 1
#define HAVE_STDARG_H 1
#define HAVE_MEMORY_H 1
#define HAVE_GMTIME 1

#elif defined(__VXWORKS_OS__) || defined(__rtems__)
#define HAVE_STRING_H 1
#define HAVE_TIME_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_STDARG_H 1
#define HAVE_MEMORY_H 1
#define HAVE_GMTIME 1

#elif defined(_WIN32_WCE)

#define HAVE_WINDOWS_H 1
#define HAVE_WINSOCK2_H 1
#define HAVE_WS2TCPIP_H 1
#define HAVE_CTYPE_H 1
#define HAVE_STRING_H 1
#define HAVE_TIME_H 1
#define HAVE_STDARG_H 1

#define snprintf _snprintf

#undef HAVE_INET_NTOP

#elif defined(WIN32)

#define HAVE_WINDOWS_H 1
#define HAVE_WINSOCK2_H 1
#define HAVE_WS2TCPIP_H 1
#define HAVE_CTYPE_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_TIME_H 1
#define HAVE_STDARG_H 1
#define HAVE_SYS_STAT_H

#if (_MSC_VER < 1900)
#define snprintf _snprintf
#endif

/* use win32 crypto routines for random number generation */
/* only use for vs .net (compiler v. 1300) or greater */
#if _MSC_VER >= 1300
#define WIN32_USE_CRYPTO 1
#endif

#if defined(_MSC_VER)
#define HAVE_MSTCPIP_H
#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP)
#undef HAVE_MSTCPIP_H
#endif
#endif

#define HAVE_WINCRYPT_H
#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP)
#undef HAVE_WINCRYPT_H
#endif

#if (_WIN32_WINNT >= 0x0600)
#define ENABLE_SIP_QOS
#if (_MSC_VER >= 1700) && !defined(_USING_V110_SDK71_)
#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP)
#undef ENABLE_SIP_QOS
#endif
#endif
#endif

#define HAVE_WINDNS_H
#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP)
#undef HAVE_WINDNS_H
#endif

#define HAVE_IPHLPAPI_H
#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP)
#undef HAVE_IPHLPAPI_H
#endif

#define HAVE_GMTIME 1
#undef HAVE_INET_NTOP

#endif

#if defined(__arc__)
#define HAVE_SYS_SOCKET_H
#define HAVE_NETINET_IN_H
#define HAVE_ARPA_INET_H
#endif

#if defined(HAVE_STRING_H)
#include <string.h>
#elif defined(HAVE_STRINGS_H)
#include <strings.h>
#else
#include <string.h>
#endif

#include <stdio.h>
#include <stdlib.h>
#if defined(HAVE_LIMITS_H)
#include <limits.h>
#endif

#if defined(HAVE_SYS_TYPES_H)
#include <sys/types.h>
#endif

#ifdef HAVE_TIME_H
#include <time.h>
#endif

#if defined(HAVE_SYS_TIME_H)
#include <sys/time.h>
#endif

#if defined(__arc__)
#include <posix_time_pub.h>

#include "includes_api.h"
#include "os_cfg_pub.h"
#define USE_GETHOSTBYNAME
#endif

#ifdef __PSOS__
#define VA_START(a, f) va_start(a, f)
#include "pna.h"
#include "stdlib.h"
#include "time.h"
#define timercmp(tvp, uvp, cmp) ((tvp)->tv_sec cmp(uvp)->tv_sec || (tvp)->tv_sec == (uvp)->tv_sec && (tvp)->tv_usec cmp(uvp)->tv_usec)
#define snprintf osip_snprintf
#ifndef INT_MAX
#define INT_MAX 0x7FFFFFFF
#endif
#endif

#ifdef HAVE_WINSOCK2_H
#include <winsock2.h>
#endif

#ifdef HAVE_WS2TCPIP_H
#include <ws2tcpip.h>
#endif

#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
#ifdef HAVE_SYS_EPOLL_H
#include <sys/epoll.h>
#endif

#include <eXosip2/eXosip.h>
#include <osip2/osip.h>
#include <osip2/osip_dialog.h>

#include "eXtransport.h"
#include "jpipe.h"

#define EXOSIP_VERSION "5.3.0"

#ifdef HAVE_WINSOCK2_H
#define SOCKET_TYPE SOCKET
#else
#define SOCKET_TYPE int
#endif

#if (defined(__STDC__) && __STDC__ && __STDC_VERSION__ >= 199901L)
#include <stdint.h>
#elif defined(HAVE_STDINT_H)
#include <stdint.h>
#elif defined(_WIN32) && defined(_MSC_VER) && (_MSC_VER < 1600)
typedef unsigned __int8 uint8_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t;
#else
#include <stdint.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif

/* I advise to use ERRBSIZ as a size */
#define ERRBSIZ 64
char *_ex_strerror(int errnum, char *buf, size_t buflen);
char *_ex_gai_strerror(int errnum, char *buf, size_t buflen);

#if defined(USE_GETHOSTBYNAME)

#define NI_MAXHOST 1025
#define NI_MAXSERV 32
#define NI_NUMERICHOST 1

#ifndef PF_INET6
#define PF_INET6 AF_INET6
#endif

#define _SS_MAXSIZE 128
#define _SS_ALIGNSIZE (sizeof(int64_t))
#define _SS_PAD1SIZE (_SS_ALIGNSIZE - sizeof(unsigned short))
#define _SS_PAD2SIZE (_SS_MAXSIZE - (sizeof(unsigned short) + _SS_PAD1SIZE + _SS_ALIGNSIZE))
struct sockaddr_storage {
  unsigned short ss_family;
  char _ss_pad1[_SS_PAD1SIZE];
  int64_t _ss_align;
  char _ss_pad2[_SS_PAD2SIZE];
};

struct addrinfo {
  int ai_flags;             /* Input flags.  */
  int ai_family;            /* Protocol family for socket.  */
  int ai_socktype;          /* Socket type.  */
  int ai_protocol;          /* Protocol for socket.  */
  socklen_t ai_addrlen;     /* Length of socket address.  */
  struct sockaddr *ai_addr; /* Socket address for socket.  */
  char *ai_canonname;       /* Canonical name for service location.  */
  struct addrinfo *ai_next; /* Pointer to next in list.  */
};

void _eXosip_freeaddrinfo(struct addrinfo *ai);

#else

#define _eXosip_freeaddrinfo freeaddrinfo

#endif

void _eXosip_update(struct eXosip_t *excontext);
void _eXosip_wakeup(struct eXosip_t *excontext);

#ifndef DEFINE_SOCKADDR_STORAGE
#define __eXosip_sockaddr sockaddr_storage
#else
#define _SS_MAXSIZE 128
#define _SS_ALIGNSIZE (sizeof(int64_t))
#define _SS_PAD1SIZE (_SS_ALIGNSIZE - sizeof(unsigned short))
#define _SS_PAD2SIZE (_SS_MAXSIZE - (sizeof(unsigned short) + _SS_PAD1SIZE + _SS_ALIGNSIZE))
struct sockaddr_storage {
  unsigned short ss_family;
  char _ss_pad1[_SS_PAD1SIZE];
  int64_t _ss_align;
  char _ss_pad2[_SS_PAD2SIZE];
};
#endif

typedef struct eXosip_dialog_t eXosip_dialog_t;

struct eXosip_dialog_t {
  int d_id;
  osip_dialog_t *d_dialog; /* active dialog */

  time_t d_session_timer_start; /* session-timer helper */
  int d_session_timer_length;
  int d_refresher;
  int d_session_timer_use_update;

  time_t d_timer;
  int d_count;
  osip_message_t *d_200Ok;
  osip_message_t *d_ack;

  osip_list_t *d_inc_trs;
  osip_list_t *d_out_trs;
  int d_retry;   /* avoid too many unsuccessful retry */
  int d_mincseq; /* remember cseq after PRACK and UPDATE during setup */

  time_t implicit_subscription_expire_time;

  eXosip_dialog_t *next;
  eXosip_dialog_t *parent;
};

typedef struct eXosip_call_t eXosip_call_t;

struct eXosip_call_t {
  int c_id;
  eXosip_dialog_t *c_dialogs;
  osip_transaction_t *c_inc_tr;
  osip_transaction_t *c_out_tr;
  osip_transaction_t *c_cancel_tr;
  int c_retry; /* avoid too many unsuccessful retry */
  void *external_reference;

  time_t expire_time;

  eXosip_call_t *next;
  eXosip_call_t *parent;
};

struct osip_stun {
  uint16_t type;
  uint16_t length;
  uint32_t magic_cookie;
  unsigned char tr_id[12];
};

typedef struct eXosip_reg_t eXosip_reg_t;

struct eXosip_reg_t {
  int r_id;

  int r_reg_period; /* delay between registration (modified by server) */
  int r_reg_expire; /* delay between registration (requested by client) */

  char *r_aor;       /* sip identity */
  char *r_registrar; /* registrar */
  char *r_contact;   /* list of contacts string */

  char r_line[16];   /* line identifier */
  char r_qvalue[16]; /* the q value used for routing */

  osip_transaction_t *r_last_tr;
  int r_retry;         /* avoid too many unsuccessful retry */
  int r_retryfailover; /* avoid too many unsuccessful retry */
  time_t r_retry_after_delay; /* obey to retry_after header */
#define RS_DELETIONREQUIRED 2
#define RS_DELETIONPROCEEDING 3
#define RS_MASQUERADINGREQUIRED 4
#define RS_MASQUERADINGPROCEEDING 5
  int registration_step;  /* registration step for learning contact header binding */
  time_t r_last_deletion; /* prevent loop for automasquerade: no more than one per minute. */

  /* used for STUN on UDP connections */
  struct __eXosip_sockaddr stun_addr;
  socklen_t stun_len;
  struct osip_stun stun_binding;
  char stun_ipbuf[INET6_ADDRSTRLEN];
  uint16_t stun_nport;
  time_t ping_rfc5626;
  int pong_supported;

  eXosip_reg_t *next;
  eXosip_reg_t *parent;
};

#ifndef MINISIZE

typedef struct eXosip_subscribe_t eXosip_subscribe_t;

struct eXosip_subscribe_t {
  int s_id;
  int s_ss_status;
  int s_ss_reason;
  int s_reg_period;
  eXosip_dialog_t *s_dialogs;

  int s_retry; /* avoid too many unsuccessful retry */
  osip_transaction_t *s_inc_tr;
  osip_transaction_t *s_out_tr;

  eXosip_subscribe_t *next;
  eXosip_subscribe_t *parent;
};

typedef struct eXosip_notify_t eXosip_notify_t;

struct eXosip_notify_t {
  int n_id;
  int n_online_status;

  int n_ss_status;
  int n_ss_reason;
  time_t n_ss_expires;
  eXosip_dialog_t *n_dialogs;

  osip_transaction_t *n_inc_tr;
  osip_transaction_t *n_out_tr;

  eXosip_notify_t *next;
  eXosip_notify_t *parent;
};

typedef struct eXosip_pub_t eXosip_pub_t;

struct eXosip_pub_t {
  int p_id;

  int p_period;        /* delay between registration */
  char p_aor[256];     /* sip identity */
  char p_sip_etag[64]; /* sip_etag from 200ok */

  osip_transaction_t *p_last_tr;
  int p_retry;
  eXosip_pub_t *next;
  eXosip_pub_t *parent;
};

int _eXosip_pub_update(struct eXosip_t *excontext, eXosip_pub_t **pub, osip_transaction_t *tr, osip_message_t *answer);
int _eXosip_pub_find_by_aor(struct eXosip_t *excontext, eXosip_pub_t **pub, const char *aor);
int _eXosip_pub_find_by_tid(struct eXosip_t *excontext, eXosip_pub_t **pjp, int tid);
int _eXosip_pub_init(struct eXosip_t *excontext, eXosip_pub_t **pub, const char *aor, const char *exp);
void _eXosip_pub_free(struct eXosip_t *excontext, eXosip_pub_t *pub);

#endif

typedef struct jauthinfo_t jauthinfo_t;

struct jauthinfo_t {
  char username[50];
  char userid[50];
  char passwd[50];
  char ha1[50];
  char realm[50];
  jauthinfo_t *parent;
  jauthinfo_t *next;
};

int _eXosip_create_proxy_authorization_header(osip_proxy_authenticate_t *wa, const char *rquri, const char *username, const char *passwd, const char *ha1, osip_proxy_authorization_t **auth, const char *method, const char *pszCNonce, int iNonceCount);
int _eXosip_store_nonce(struct eXosip_t *excontext, const char *call_id, osip_proxy_authenticate_t *wa, int answer_code);
int _eXosip_delete_nonce(struct eXosip_t *excontext, const char *call_id);

eXosip_event_t *_eXosip_event_init_for_call(int type, eXosip_call_t *jc, eXosip_dialog_t *jd, osip_transaction_t *tr);

#ifndef MINISIZE
eXosip_event_t *_eXosip_event_init_for_subscription(int type, eXosip_subscribe_t *js, eXosip_dialog_t *jd, osip_transaction_t *tr);
eXosip_event_t *_eXosip_event_init_for_notify(int type, eXosip_notify_t *jn, eXosip_dialog_t *jd, osip_transaction_t *tr);
#endif

eXosip_event_t *_eXosip_event_init_for_reg(int type, eXosip_reg_t *jr, osip_transaction_t *tr);
eXosip_event_t *_eXosip_event_init_for_message(int type, osip_transaction_t *tr);

int _eXosip_event_init(eXosip_event_t **je, int type);
void _eXosip_report_call_event(struct eXosip_t *excontext, int evt, eXosip_call_t *jc, eXosip_dialog_t *jd, osip_transaction_t *tr);
void _eXosip_report_event(struct eXosip_t *excontext, eXosip_event_t *je);
int _eXosip_event_add(struct eXosip_t *excontext, eXosip_event_t *je);

typedef void (*eXosip_callback_t)(int type, eXosip_event_t *);

char *_eXosip_strdup_printf(const char *fmt, ...);

char *_eXosip_transport_protocol(osip_message_t *msg);
int _eXosip_find_protocol(osip_message_t *msg);
int setsockopt_ipv6only(int sock);

#ifndef MAX_EXOSIP_DNS_ENTRY
#define MAX_EXOSIP_DNS_ENTRY 10
#endif

#ifndef MAX_EXOSIP_ACCOUNT_INFO
#define MAX_EXOSIP_ACCOUNT_INFO 10
#endif

#ifndef MAX_EXOSIP_HTTP_AUTH
#define MAX_EXOSIP_HTTP_AUTH 100
#endif

#ifndef EXOSIP_RING_TIMEOUT
#define EXOSIP_RING_TIMEOUT 180
#endif

struct eXosip_counters {
  float current_average;
  unsigned int num_entries;
  unsigned short period;   /* total max duration */
  unsigned short interval; /* minimum interval */
  unsigned short *values;
  struct timeval *times;
  unsigned int index_last;
  unsigned int total_values;
};

typedef struct eXosip_t eXosip_t;

struct eXosip_t {
#ifndef MINISIZE
  struct eXosip_stats statistics;
  struct eXosip_counters average_transactions;
  struct eXosip_counters average_registrations;
  struct eXosip_counters average_calls;
  struct eXosip_counters average_publications;
  struct eXosip_counters average_subscriptions;
  struct eXosip_counters average_insubscriptions;
#endif

  struct eXtl_protocol eXtl_transport;
  void *eXtludp_reserved;
  void *eXtltcp_reserved;
#ifndef DISABLE_TLS
  void *eXtltls_reserved;
  void *eXtldtls_reserved;
#endif

#define EXOSIP_USE_SELECT 0
#define EXOSIP_USE_EPOLL_LT 1

  int poll_method; /* EXOSIP_USE_SELECT EXOSIP_USE_EPOLL_LT */

#ifndef EXOSIP_MAX_DESCRIPTOR
#define EXOSIP_MAX_DESCRIPTOR 10000
#endif
#ifdef HAVE_SYS_EPOLL_H
  int max_fd_no;
  int epfd; /* epoll ctrl fd */
  struct epoll_event *ep_array;
  int epfdctl; /* epoll ctrl fd for exosip wait/get events */
#endif

  char transport[10];
  char *user_agent;

  eXosip_reg_t *j_reg;    /* my registrations */
  eXosip_call_t *j_calls; /* my calls        */
#ifndef MINISIZE
  eXosip_subscribe_t *j_subscribes; /* my friends      */
  eXosip_notify_t *j_notifies;      /* my susbscribers */
  eXosip_pub_t *j_pub;              /* my publications  */
#endif
  osip_list_t j_transactions;

  osip_t *j_osip;
  int j_stop_ua;
#ifndef OSIP_MONOTHREAD
  void *j_cond;
  void *j_mutexlock;
  void *j_thread;
  jpipe_t *j_socketctl;
  jpipe_t *j_socketctl_event;
#endif
  int max_message_to_read;
  long int max_read_timeout;

  osip_fifo_t *j_events;

  jauthinfo_t *authinfos;

  struct timeval cc_timer;
  struct timeval ka_timer;
  int ka_interval;
  char ka_crlf[5];
  int ka_options;
  int learn_port;
  int use_rport;
  int remove_prerouteset;
  int dns_capabilities;
  int enable_dns_cache;
  int dscp;
  int implicit_subscription_expires;
  int register_with_date;
  int autoanswer_bye;
  int ipv6_enable;
  char ipv4_for_gateway[256];
  char ipv6_for_gateway[256];
  struct eXosip_dns_cache dns_entries[MAX_EXOSIP_DNS_ENTRY];
  struct eXosip_account_info account_entries[MAX_EXOSIP_ACCOUNT_INFO];
  struct eXosip_http_auth http_auths[MAX_EXOSIP_HTTP_AUTH];

  /* udp pre-config */
  char udp_firewall_ip[64];
  char udp_firewall_port[10];

  /* tcp pre-config */
  char tcp_firewall_ip[64];
  char tcp_firewall_port[10];

  /* tls pre-config */
  char tls_firewall_ip[64];
  char tls_firewall_port[10];
  int tls_verify_client_certificate;
  eXosip_tls_ctx_t eXosip_tls_ctx_params;

  /* dtls pre-config */
  char dtls_firewall_ip[64];
  char dtls_firewall_port[10];

  CbSipCallback cbsipCallback;
  int masquerade_via;
  int auto_masquerade_contact;
  int reuse_tcp_port;
  int use_ephemeral_port;
  int enable_outbound;
  char oc_local_address[64];
  int oc_local_port_range[2];
  int oc_local_port_current;

  CbSipWakeLock cbsipWakeLock;
  int outgoing_wake_lock_state;
  int incoming_wake_lock_state;

  char sip_instance[256]; /* can only be used if ONE excontext is used for ONE registration only */
  char co_register_extra_params[512]; /* some extra contact parameters for Contact in REGISTER "audio;video;mobility="fixed";+sip.message="TRUE";other-param=66372;" parameter must not contains initial ";" */
  char co_dialog_extra_params[512];   /* some extra contact parameters for Contact in INVITE's dialog "audio;video;" parameter must not contains initial ";" */
  char default_contact_displayname[256];
  int opt_sessiontimers_force;
  int opt_force_connectionreuse;
};

int _eXosip_guess_ip_for_via(struct eXosip_t *excontext, int family, char *address, int size);
int _eXosip_guess_ip_for_destination(struct eXosip_t *excontext, int family, char *destination, char *address, int size);
int _eXosip_guess_ip_for_destinationsock(struct eXosip_t *excontext, int family, int proto, struct sockaddr_storage *udp_local_bind, int sock, char *destination, char *address, int size);

int _eXosip_closesocket(SOCKET_TYPE sock);
int _eXosip_getnameinfo(const struct sockaddr *sa, socklen_t salen, char *host, socklen_t hostlen, char *serv, socklen_t servlen, int flags);
int _eXosip_getport(const struct sockaddr *sa);
int _eXosip_get_addrinfo(struct eXosip_t *excontext, struct addrinfo **addrinfo, const char *hostname, int service, int protocol);

int _eXosip_set_callbacks(osip_t *osip);
int _eXosip_snd_message(struct eXosip_t *excontext, osip_transaction_t *tr, osip_message_t *sip, char *host, int port, int out_socket);
char *_eXosip_malloc_new_random(void);
void _eXosip_delete_reserved(osip_transaction_t *transaction);

int _eXosip_dialog_init_as_uac(eXosip_dialog_t **jd, osip_message_t *_200Ok);
int _eXosip_dialog_init_as_uas(eXosip_dialog_t **jd, osip_message_t *_invite, osip_message_t *_200Ok);
void _eXosip_dialog_free(struct eXosip_t *excontext, eXosip_dialog_t *jd);

int _eXosip_generating_request_out_of_dialog(struct eXosip_t *excontext, osip_message_t **dest, const char *method, const char *to, const char *from, const char *proxy);
int _eXosip_generating_publish(struct eXosip_t *excontext, osip_message_t **message, const char *to, const char *from, const char *route);
int _eXosip_generating_cancel(struct eXosip_t *excontext, osip_message_t **dest, osip_message_t *request_cancelled);
int _eXosip_generating_bye(struct eXosip_t *excontext, osip_message_t **bye, osip_dialog_t *dialog);
int _eXosip_request_viamanager(struct eXosip_t *excontext, osip_message_t *sip, int family, int proto, struct sockaddr_storage *udp_local_bind, int local_port, int sock, char *host);
int _eXosip_message_contactmanager(struct eXosip_t *excontext, osip_message_t *sip, int family, int proto, struct sockaddr_storage *udp_local_bind, int local_port, int sock, char *host);

int _eXosip_update_top_via(osip_message_t *sip);
int _eXosip_request_add_via(struct eXosip_t *excontext, osip_message_t *request);

void _eXosip_mark_all_registrations_expired(struct eXosip_t *excontext);
void _eXosip_mark_all_transaction_force_send(struct eXosip_t *excontext, int socket);
void _eXosip_mark_all_transaction_transport_error(struct eXosip_t *excontext, int socket);
void _eXosip_mark_registration_expired(struct eXosip_t *excontext, const char *call_id);
int _eXosip_mark_all_transaction_ready(struct eXosip_t *excontext, fd_set *osip_fdset, fd_set *osip_wrset, fd_set *osip_exceptset, int *osip_fd_table);
#ifdef HAVE_SYS_EPOLL_H
int _eXosip_mark_all_transaction_ready_epoll(struct eXosip_t *excontext, int nfds, int *osip_fd_table);
#endif
int _eXosip_check_allow_header(eXosip_dialog_t *jd, osip_message_t *message);

int _eXosip_add_authentication_information(struct eXosip_t *excontext, osip_message_t *req, osip_message_t *last_response);
int _eXosip_reg_find(struct eXosip_t *excontext, eXosip_reg_t **reg, osip_transaction_t *tr);
int _eXosip_reg_find_id(struct eXosip_t *excontext, eXosip_reg_t **reg, int rid);
int _eXosip_reg_init(struct eXosip_t *excontext, eXosip_reg_t **jr, const char *from, const char *proxy, const char *contact);
void _eXosip_reg_free(struct eXosip_t *excontext, eXosip_reg_t *jreg);

int _eXosip_call_transaction_find(struct eXosip_t *excontext, int tid, eXosip_call_t **jc, eXosip_dialog_t **jd, osip_transaction_t **tr);
int _eXosip_call_retry_request(struct eXosip_t *excontext, eXosip_call_t *jc, eXosip_dialog_t *jd, osip_transaction_t *out_tr);
int _eXosip_transaction_find(struct eXosip_t *excontext, int tid, osip_transaction_t **transaction);
int _eXosip_call_dialog_find(struct eXosip_t *excontext, int jid, eXosip_call_t **jc, eXosip_dialog_t **jd);
int _eXosip_call_find(struct eXosip_t *excontext, int cid, eXosip_call_t **jc);
int _eXosip_dialog_set_200ok(eXosip_dialog_t *_jd, osip_message_t *_200Ok);

int _eXosip_answer_invite_123456xx(struct eXosip_t *excontext, eXosip_call_t *jc, eXosip_dialog_t *jd, int code, osip_message_t **answer, int send);

int _eXosip_build_response_default(struct eXosip_t *excontext, osip_message_t **dest, osip_dialog_t *dialog, int status, osip_message_t *request);
int _eXosip_complete_answer_that_establish_a_dialog(struct eXosip_t *excontext, osip_message_t *response, osip_message_t *request);
int _eXosip_build_request_within_dialog(struct eXosip_t *excontext, osip_message_t **dest, const char *method, osip_dialog_t *dialog);
int _eXosip_remove_transaction_from_call(osip_transaction_t *tr, eXosip_call_t *jc);

osip_transaction_t *_eXosip_find_last_transaction(eXosip_call_t *jc, eXosip_dialog_t *jd, const char *method);
osip_transaction_t *_eXosip_find_last_inc_transaction(eXosip_dialog_t *jd, const char *method);
osip_transaction_t *_eXosip_find_last_out_transaction(eXosip_call_t *jc, eXosip_dialog_t *jd, const char *method);
osip_transaction_t *_eXosip_find_last_invite(eXosip_call_t *jc, eXosip_dialog_t *jd);
osip_transaction_t *_eXosip_find_last_inc_invite(eXosip_call_t *jc, eXosip_dialog_t *jd);
osip_transaction_t *_eXosip_find_last_out_invite(eXosip_call_t *jc, eXosip_dialog_t *jd);
osip_transaction_t *_eXosip_find_previous_invite(eXosip_call_t *jc, eXosip_dialog_t *jd, osip_transaction_t *last_invite);

int _eXosip_call_init(struct eXosip_t *excontext, eXosip_call_t **jc);
void _eXosip_call_renew_expire_time(eXosip_call_t *jc);
void _eXosip_call_free(struct eXosip_t *excontext, eXosip_call_t *jc);
void _eXosip_call_remove_dialog_reference_in_call(eXosip_call_t *jc, eXosip_dialog_t *jd);
int _eXosip_read_message(struct eXosip_t *excontext, int max_message_nb, int sec_max, int usec_max);
void _eXosip_release_terminated_calls(struct eXosip_t *excontext);
void _eXosip_release_terminated_registrations(struct eXosip_t *excontext);
void _eXosip_release_terminated_publications(struct eXosip_t *excontext);

#ifndef MINISIZE
int _eXosip_insubscription_transaction_find(struct eXosip_t *excontext, int tid, eXosip_notify_t **jn, eXosip_dialog_t **jd, osip_transaction_t **tr);
int _eXosip_notify_dialog_find(struct eXosip_t *excontext, int nid, eXosip_notify_t **jn, eXosip_dialog_t **jd);
int _eXosip_subscription_transaction_find(struct eXosip_t *excontext, int tid, eXosip_subscribe_t **js, eXosip_dialog_t **jd, osip_transaction_t **tr);
int _eXosip_subscription_dialog_find(struct eXosip_t *excontext, int nid, eXosip_subscribe_t **js, eXosip_dialog_t **jd);
int _eXosip_insubscription_answer_1xx(struct eXosip_t *excontext, eXosip_notify_t *jc, eXosip_dialog_t *jd, int code);
int _eXosip_insubscription_answer_2xx(eXosip_notify_t *jn, eXosip_dialog_t *jd, int code);
int _eXosip_insubscription_answer_3456xx(struct eXosip_t *excontext, eXosip_notify_t *jn, eXosip_dialog_t *jd, int code);
osip_transaction_t *_eXosip_find_last_inc_notify(eXosip_dialog_t *jd);
osip_transaction_t *_eXosip_find_last_out_notify(eXosip_dialog_t *jd);
osip_transaction_t *_eXosip_find_last_inc_subscribe(eXosip_notify_t *jn, eXosip_dialog_t *jd);
osip_transaction_t *_eXosip_find_last_out_subscribe(eXosip_subscribe_t *js, eXosip_dialog_t *jd);
void _eXosip_release_terminated_subscriptions(struct eXosip_t *excontext);
void _eXosip_release_terminated_in_subscriptions(struct eXosip_t *excontext);
int _eXosip_subscription_init(struct eXosip_t *excontext, eXosip_subscribe_t **js);
void _eXosip_subscription_free(struct eXosip_t *excontext, eXosip_subscribe_t *js);
int _eXosip_subscription_set_refresh_interval(eXosip_subscribe_t *js, osip_message_t *inc_subscribe);
int _eXosip_subscription_send_request_with_credential(struct eXosip_t *excontext, eXosip_subscribe_t *js, eXosip_dialog_t *jd, osip_transaction_t *out_tr);
int _eXosip_subscription_automatic_refresh(struct eXosip_t *excontext, eXosip_subscribe_t *js, eXosip_dialog_t *jd, osip_transaction_t *out_tr);
int _eXosip_notify_init(struct eXosip_t *excontext, eXosip_notify_t **jn, osip_message_t *inc_subscribe);
void _eXosip_notify_free(struct eXosip_t *excontext, eXosip_notify_t *jn);
int _eXosip_notify_set_contact_info(eXosip_notify_t *jn, char *uri);
int _eXosip_notify_set_refresh_interval(eXosip_notify_t *jn, osip_message_t *inc_subscribe);
void _eXosip_notify_add_expires_in_2XX_for_subscribe(eXosip_notify_t *jn, osip_message_t *answer);
int _eXosip_insubscription_send_request_with_credential(struct eXosip_t *excontext, eXosip_notify_t *jn, eXosip_dialog_t *jd, osip_transaction_t *out_tr);
#endif

int _eXosip_is_public_address(const char *addr);

void _eXosip_retransmit_lost200ok(struct eXosip_t *excontext);
int _eXosip_dialog_add_contact(struct eXosip_t *excontext, osip_message_t *request);

int _eXosip_transaction_init(struct eXosip_t *excontext, osip_transaction_t **transaction, osip_fsm_type_t ctx_type, osip_t *osip, osip_message_t *message);
void _eXosip_transaction_free(struct eXosip_t *excontext, osip_transaction_t *transaction);

int _eXosip_srv_lookup(struct eXosip_t *excontext, osip_message_t *sip, osip_naptr_t **naptr_record);
const char *_eXosip_dnsutils_find_sni(struct eXosip_t *excontext, const char *hostname);
int _eXosip_dnsutils_getsock(struct eXosip_t *excontext, fd_set *read_fds, fd_set *write_fds);
int _eXosip_dnsutils_checksock(struct eXosip_t *excontext, fd_set *read_fds, fd_set *write_fds);
int _eXosip_dnsutils_checksock_epoll(struct eXosip_t *excontext, int nfds);
int _eXosip_dnsutils_addsock_epoll(struct eXosip_t *excontext, int *cares_fd_table);
int _eXosip_dnsutils_delsock_epoll(struct eXosip_t *excontext, int *cares_fd_table);

int _eXosip_handle_incoming_message(struct eXosip_t *excontext, char *buf, size_t len, int socket, char *host, int port, char *received_host, int *rport_port);

int _eXosip_transport_set_dscp(struct eXosip_t *excontext, int family, int sock);

/**
 * sets the parameters for the TLS context, which is used for encrypted connections
 * @return  the eXosip_tls_ctx_error code
 */
eXosip_tls_ctx_error eXosip_set_tls_ctx(struct eXosip_t *excontext, eXosip_tls_ctx_t *ctx);

/**
 * Configure to accept/reject self signed and expired certificates.
 */
eXosip_tls_ctx_error eXosip_tls_verify_certificate(struct eXosip_t *excontext, int _tls_verify_client_certificate);

/**
 * Shared method for TCP and TLS
 * check if a socket is connected or broken
 */
int _tcptls_tl_is_connected(int epoll_method, int sock);

/**
 * Resolv destination using NAPTR/SRV record
 */
int _tl_resolv_naptr_destination(struct eXosip_t *excontext, osip_transaction_t *tr, osip_message_t *sip, char **out_host, int *out_port, osip_naptr_t **out_naptr_record);

#ifndef EXOSIP_STATS_PERIOD
#define EXOSIP_STATS_PERIOD 3600 /* default period in seconds */
#endif
#ifndef EXOSIP_STATS_INTERVAL
#define EXOSIP_STATS_INTERVAL 60 /* default interval in seconds */
#endif

#ifndef MINISIZE
void _eXosip_counters_init(struct eXosip_counters *bw_stats, int period, int interval);
void _eXosip_counters_update(struct eXosip_counters *bw_stats, int nvalues, struct timeval *now);
void _eXosip_counters_free(struct eXosip_counters *bw_stats);
#else
#define _eXosip_counters_init(A, B, C)
#define _eXosip_counters_update(A, B, C)
#define _eXosip_counters_free(A)
#endif

#ifdef __cplusplus
}
#endif
#endif