我正在尝试使用 getopt_long 进行一些基本的选项解析。我的具体问题是不使用该选项时会覆盖默认的 int 值。我已经阅读了有关 getopt 的文档和一些解释,但没有看到有关保留默认值/可选参数的任何内容。
编译并运行它,我希望端口/p 的默认值为 4567。当我不指定任何选项或使用 -p 5050 时,一切正常。当我使用其他选项(-t)时,-p 的值也会改变。
gcc -o tun2udp_dtls tun2udp_dtls.c
$ /tun2udp_dtls
port 4567 // correct
$ /tun2udp_dtls -p 5050
port 5050 // correct
$ ./tun2udp_dtls -t foo
port 0 // wtf!?
编码:
#include <errno.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <sys/ioctl.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <string.h>
#include <unistd.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
int main (int argc, char *argv[]) {
// Vars
char devname[128];
int port = 4567;
int c;
while (1) {
static struct option long_options[] = {
{"tdev", required_argument, NULL, 't'},
{"port", required_argument, NULL, 'p'},
{0, 0, 0, 0}
};
int option_index = 0;
c = getopt_long (argc, argv, "t:p:", long_options, &option_index);
if (c == -1) break;
switch (c) {
case 't':
strncpy(devname, optarg, sizeof(devname));
devname[sizeof(devname)-1] = 0;
case 'p':
port = atoi(optarg);
default:
break;
}
}
// Temporary debug printout
printf("tdev '%s'\n", devname);
printf("port %i\n", port);
}