Changeset 38b5e7cd2d56cd54dd595e574a88d8a834c09320
- Timestamp:
- 13/11/04 13:19:06 (4 years ago)
- git-parent:
- Files:
-
- modules/access_output/http.c (modified) (2 diffs)
- modules/codec/x264.c (modified) (1 diff)
- modules/control/http.c (modified) (1 diff)
- modules/misc/gnutls.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/access_output/http.c
r5aa8d01 r38b5e7c 54 54 #define MIME_TEXT N_("Mime") 55 55 #define MIME_LONGTEXT N_("Allows you to give the mime returned by the server." ) 56 56 57 #define CERT_TEXT N_( "Certificate file" ) 57 #define CERT_LONGTEXT N_( "HTTP/SSL stream output x509 PEM certificate file" ) 58 #define CERT_LONGTEXT N_( "Path to the x509 PEM certificate file that will "\ 59 "be used by the HTTP/SSL stream output" ) 58 60 #define KEY_TEXT N_( "Private key file" ) 59 #define KEY_LONGTEXT N_( "HTTP/SSL stream output x509 PEM private key file" ) 61 #define KEY_LONGTEXT N_( "Path to the x509 PEM private key file that will " \ 62 " be used by the HTTP/SSL stream output. Leave " \ 63 "empty if you don't have one." ) 60 64 #define CA_TEXT N_( "Root CA file" ) 61 #define CA_LONGTEXT N_( "HTTP/SSL stream output x509 PEM trusted root CA certificates file" ) 65 #define CA_LONGTEXT N_( "Path to the x509 PEM trusted root CA certificates " \ 66 "(certificate authority) file that will be used by " \ 67 "the HTTP/SSL stream output. Leave empty if you " \ 68 "don't have one." ) 62 69 #define CRL_TEXT N_( "CRL file" ) 63 #define CRL_LONGTEXT N_( "HTTP/SSL stream output Certificates Revocation List file" ) 70 #define CRL_LONGTEXT N_( "Path to the x509 PEM Certificates Revocation List " \ 71 "file that will be HTTP/SSL stream output. Leave " \ 72 "empty if you don't have one." ) 64 73 65 74 vlc_module_begin(); … … 69 78 add_shortcut( "https" ); 70 79 add_shortcut( "mmsh" ); 71 add_string( SOUT_CFG_PREFIX "user", "", NULL, USER_TEXT, USER_LONGTEXT, VLC_TRUE ); 72 add_string( SOUT_CFG_PREFIX "pwd", "", NULL, PASS_TEXT, PASS_LONGTEXT, VLC_TRUE ); 73 add_string( SOUT_CFG_PREFIX "mime", "", NULL, MIME_TEXT, MIME_LONGTEXT, VLC_TRUE ); 74 add_string( SOUT_CFG_PREFIX "cert", "vlc.pem", NULL, CERT_TEXT, CERT_LONGTEXT, VLC_TRUE ); 75 add_string( SOUT_CFG_PREFIX "key", NULL, NULL, KEY_TEXT, KEY_LONGTEXT, VLC_TRUE ); 76 add_string( SOUT_CFG_PREFIX "ca", NULL, NULL, CA_TEXT, CA_LONGTEXT, VLC_TRUE ); 77 add_string( SOUT_CFG_PREFIX "crl", NULL, NULL, CRL_TEXT, CRL_LONGTEXT, VLC_TRUE ); 80 add_string( SOUT_CFG_PREFIX "user", "", NULL, 81 USER_TEXT, USER_LONGTEXT, VLC_TRUE ); 82 add_string( SOUT_CFG_PREFIX "pwd", "", NULL, 83 PASS_TEXT, PASS_LONGTEXT, VLC_TRUE ); 84 add_string( SOUT_CFG_PREFIX "mime", "", NULL, 85 MIME_TEXT, MIME_LONGTEXT, VLC_TRUE ); 86 add_string( SOUT_CFG_PREFIX "cert", "vlc.pem", NULL, 87 CERT_TEXT, CERT_LONGTEXT, VLC_TRUE ); 88 add_string( SOUT_CFG_PREFIX "key", NULL, NULL, 89 KEY_TEXT, KEY_LONGTEXT, VLC_TRUE ); 90 add_string( SOUT_CFG_PREFIX "ca", NULL, NULL, 91 CA_TEXT, CA_LONGTEXT, VLC_TRUE ); 92 add_string( SOUT_CFG_PREFIX "crl", NULL, NULL, 93 CRL_TEXT, CRL_LONGTEXT, VLC_TRUE ); 78 94 set_callbacks( Open, Close ); 79 95 vlc_module_end(); modules/codec/x264.c
rc2731db r38b5e7c 64 64 65 65 #define KEYINT_TEXT N_("Sets maximum interval between I frames") 66 #define KEYINT_LONGTEXT N_( "Larger values save bits, thus improve quality , "\67 " at the cost of seeking precision." )66 #define KEYINT_LONGTEXT N_( "Larger values save bits, thus improve quality "\ 67 "for a given bitrate, at the cost of seeking precision." ) 68 68 69 69 #define IDRINT_TEXT N_("IDR frames") modules/control/http.c
red49737 r38b5e7c 80 80 #define SRC_LONGTEXT N_( "Source directory" ) 81 81 #define CERT_TEXT N_( "Certificate file" ) 82 #define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file (enables SSL)" ) 82 #define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file " \ 83 "(enables SSL)" ) 83 84 #define KEY_TEXT N_( "Private key file" ) 84 85 #define KEY_LONGTEXT N_( "HTTP interface x509 PEM private key file" ) 85 86 #define CA_TEXT N_( "Root CA file" ) 86 #define CA_LONGTEXT N_( "HTTP interface x509 PEM trusted root CA certificates file" ) 87 #define CA_LONGTEXT N_( "HTTP interface x509 PEM trusted root CA " \ 88 "certificates file" ) 87 89 #define CRL_TEXT N_( "CRL file" ) 88 90 #define CRL_LONGTEXT N_( "HTTP interace Certificates Revocation List file" ) modules/misc/gnutls.c
r17ae484 r38b5e7c 30 30 */ 31 31 32 32 33 33 /***************************************************************************** 34 34 * Preamble … … 54 54 #define DH_BITS_TEXT N_("Diffie-Hellman prime bits") 55 55 #define DH_BITS_LONGTEXT N_( \ 56 "Allows you to modify the Diffie-Hellman prime's number of bits " \56 "Allows you to modify the Diffie-Hellman prime's number of bits " \ 57 57 "(used for TLS or SSL-based server-side encryption)." ) 58 58 … … 586 586 } 587 587 588 static struct gcry_thread_cbs gcry_threads_vlc = 588 static struct gcry_thread_cbs gcry_threads_vlc = 589 589 { 590 590 GCRY_THREAD_OPTION_USER,
