Lines Matching refs:ARGV
45 while(@ARGV) {
46 if($ARGV[0] eq '--verbose') {
49 elsif($ARGV[0] eq '--pidfile') {
50 if($ARGV[1]) {
51 $pidfile = $ARGV[1];
52 shift @ARGV;
55 elsif($ARGV[0] eq '--nghttpx') {
56 if($ARGV[1]) {
57 $nghttpx = $ARGV[1];
58 shift @ARGV;
61 elsif($ARGV[0] eq '--port') {
62 if($ARGV[1]) {
63 $listenport = $ARGV[1];
64 shift @ARGV;
67 elsif($ARGV[0] eq '--connect') {
68 if($ARGV[1]) {
69 $connect = $ARGV[1];
71 shift @ARGV;
74 elsif($ARGV[0] eq '--cert') {
75 if($ARGV[1]) {
76 $cert = $ARGV[1];
77 shift @ARGV;
80 elsif($ARGV[0] eq '--logfile') {
81 if($ARGV[1]) {
82 $logfile = $ARGV[1];
83 shift @ARGV;
86 elsif($ARGV[0] eq '--logdir') {
87 if($ARGV[1]) {
88 $logdir = $ARGV[1];
89 shift @ARGV;
92 elsif($ARGV[0] eq '--conf') {
93 if($ARGV[1]) {
94 $conf = $ARGV[1];
95 shift @ARGV;
99 print STDERR "\nWarning: http3-server.pl unknown parameter: $ARGV[0]\n";
101 shift @ARGV;