config.h 905 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * $Id$
  3. *
  4. * SIP-router is distributed in the hope that it will be useful,
  5. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  6. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  7. * GNU General Public License for more details.
  8. *
  9. * You should have received a copy of the GNU General Public License
  10. * along with this program; if not, write to the Free Software
  11. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  12. */
  13. /*!
  14. * \file
  15. * \brief Siputils :: Configuration
  16. * \ingroup siputils
  17. */
  18. #ifndef _SIPUTILS_CONFIG_H
  19. #define _SIPUTILS_CONFIG_H
  20. #include "../../cfg/cfg.h"
  21. #include "../../str.h"
  22. struct cfg_group_siputils {
  23. unsigned int ring_timeout;
  24. };
  25. extern struct cfg_group_siputils default_siputils_cfg;
  26. extern void *siputils_cfg;
  27. extern cfg_def_t siputils_cfg_def[];
  28. int ring_timeout_fixup(void*, str*, str*, void**);
  29. #endif