ctl_defaults.h 453 B

12345678910111213141516171819
  1. /* $Id$
  2. */
  3. #ifndef __ctl_defaults_h
  4. #define __ctl_defaults_h
  5. /*listen by default on: */
  6. #ifdef SRNAME
  7. /* this is used when compiling sercmd tool */
  8. #define DEFAULT_CTL_SOCKET "unixs:/tmp/" SRNAME "_ctl"
  9. #else
  10. /* this is used when compiling sip server */
  11. #define DEFAULT_CTL_SOCKET "unixs:/tmp/" NAME "_ctl"
  12. #endif
  13. /* port used by default for tcp/udp if no port is explicitely specified */
  14. #define DEFAULT_CTL_PORT 2049
  15. #define PROC_CTL -32
  16. #endif