Updated cli and server to read certificate and keys from command line
[gnutls.git] / src / tls_test.gaa
blob571e059956af5a0b709bb7bf9cd72d87eba1535e
1 helpnode "gnutls-cli-debug help\nUsage: gnutls-cli-debug [options] hostname"
3 #int pp;
4 option (p, port) INT "integer" { $pp = $1 } "The port to connect to."
6 option (h, help) { gaa_help(); exit(0); } "prints this help"
8 #int nrest_args;
9 #char **rest_args;
10 rest *STR "hostname" { $rest_args = $1; $nrest_args = @1 }
12 init { $rest_args=NULL; $nrest_args=0; $pp = 443; }