globals.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Kamailio osp module.
  3. *
  4. * This module enables Kamailio to communicate with an Open Settlement
  5. * Protocol (OSP) server. The Open Settlement Protocol is an ETSI
  6. * defined standard for Inter-Domain VoIP pricing, authorization
  7. * and usage exchange. The technical specifications for OSP
  8. * (ETSI TS 101 321 V4.1.1) are available at www.etsi.org.
  9. *
  10. * Uli Abend was the original contributor to this module.
  11. *
  12. * Copyright (C) 2001-2005 Fhg Fokus
  13. *
  14. * This file is part of Kamailio, a free SIP server.
  15. *
  16. * Kamailio is free software; you can redistribute it and/or modify
  17. * it under the terms of the GNU General Public License as published by
  18. * the Free Software Foundation; either version 2 of the License, or
  19. * (at your option) any later version
  20. *
  21. * Kamailio is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with this program; if not, write to the Free Software
  28. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  29. */
  30. #include <stdio.h>
  31. #include <osp/osp.h>
  32. #include "../../usr_avp.h"
  33. #include "osp_mod.h"
  34. unsigned int _osp_sp_number;
  35. char* _osp_sp_uris[OSP_DEF_SPS];
  36. unsigned long _osp_sp_weights[OSP_DEF_SPS] = {
  37. OSP_DEF_WEIGHT, OSP_DEF_WEIGHT, OSP_DEF_WEIGHT, OSP_DEF_WEIGHT,
  38. OSP_DEF_WEIGHT, OSP_DEF_WEIGHT, OSP_DEF_WEIGHT, OSP_DEF_WEIGHT,
  39. OSP_DEF_WEIGHT, OSP_DEF_WEIGHT, OSP_DEF_WEIGHT, OSP_DEF_WEIGHT,
  40. OSP_DEF_WEIGHT, OSP_DEF_WEIGHT, OSP_DEF_WEIGHT, OSP_DEF_WEIGHT
  41. };
  42. char* _osp_device_ip = NULL;
  43. char* _osp_device_port = NULL;
  44. unsigned char* _osp_private_key = NULL;
  45. unsigned char* _osp_local_certificate = NULL;
  46. unsigned char* _osp_ca_certificate = NULL;
  47. int _osp_crypto_hw = OSP_DEF_HW;
  48. int _osp_validate_callid = OSP_DEF_CALLID;
  49. int _osp_token_format = OSP_DEF_TOKEN;
  50. int _osp_ssl_lifetime = OSP_DEF_SSLLIFE;
  51. int _osp_persistence = OSP_DEF_PERSISTENCE;
  52. int _osp_retry_delay = OSP_DEF_DELAY;
  53. int _osp_retry_limit = OSP_DEF_RETRY;
  54. int _osp_timeout = OSP_DEF_TIMEOUT;
  55. int _osp_max_dests = OSP_DEF_DESTS;
  56. int _osp_use_rpid = OSP_DEF_USERPID;
  57. int _osp_redir_uri = OSP_DEF_REDIRURI;
  58. char _osp_PRIVATE_KEY[OSP_KEYBUF_SIZE];
  59. char _osp_LOCAL_CERTIFICATE[OSP_KEYBUF_SIZE];
  60. char _osp_CA_CERTIFICATE[OSP_KEYBUF_SIZE];
  61. char* _osp_snid_avp = OSP_DEF_SNIDAVP;
  62. int_str _osp_snid_avpname;
  63. unsigned short _osp_snid_avptype;
  64. OSPTPROVHANDLE _osp_provider = -1;