Changeset 5358

Added a pack of default ssl certificates into the keys folder for a TCP/TLS encryption quick start

Committed by:  wildzero-cw
Date:  Mar 13 2009 * 01:40 (about 1 year ago)

Affected files:

callweaver/branches/rel/1.2/channels/chan_sip.c (unified diff)

r5357r5358
502502 #ifdef SIP_TCP_SUPPORT
503503 #define MAX_PATH_LEN 100
504504 #define DEFAULT_SIP_TLS_PORT 5061 /* From RFC 3261 */
505 #define DEFAULT_PASSWORD "callweaver"
505506 #define DEFAULT_ENTROPY "/dev/urandom"
506507 #define CIPHER_LIST "ALL"
507508
508509 static char trustcerts_file[MAX_PATH_LEN];
509510 static char servercert_file[MAX_PATH_LEN];
510511 static char serverkey_file[MAX_PATH_LEN];
511 static char serverkey_password[MAX_PATH_LEN];
512 static char serverkey_password[MAX_PATH_LEN] = DEFAULT_PASSWORD;
512513 static char dh512param_file[MAX_PATH_LEN];
513514 static char dh1024param_file[MAX_PATH_LEN];
514515 #endif