代码拉取完成,页面将自动刷新
同步操作将从 yuanhack/sarudp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include "yharguments.h"
#include "yherror.h"
int port = -1;
int daemond = 0;
int optp;
static struct option opt[] = {
{"port", 1, 0, 'p'},
{"daemon", 0, 0, 'd'},
{"help", 0, 0, 'h'},
{0,0,0,0}
};
void usage(int argc, char **argv)
{
err_msg("usage: %s [port] [option[=value]]...", argv[0]);
err_msg(" -p, --port=number Service port(range 1~65535), like [port]");
err_msg(" but the priority is higher than [port]");
err_msg(" -d, --daemon Daemon mode");
err_msg(" -h, --help Usage help");
}
void port_check(int argc, char **argv, int port, char *strport)
{
if (port <= 0) {
err_msg("bad parameter: port %s", strport);
usage(argc, argv);
exit(1);
}
}
void arguments(int argc, char **argv)
{
char c;
opterr = 1;
while ((c = getopt_long(argc,argv,"p:dh", opt, 0)) != -1) {
switch (c) {
case 'p':
port = atoi(optarg);
port_check(argc, argv, port, optarg);
optp = 1;
break;
case 'd':
daemond = 1;
break;
case 'h':
usage(argc, argv);
exit(0);
case '?':
err_quit("Try '%s --help' for more information.", argv[0]);
default :
usage(argc, argv);
exit(1);
}
}
if (optp == 0) {
port = atoi(argv[argc-1]);
port_check(argc, argv, port, argv[argc-1]);
optp = 1;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。