代码拉取完成,页面将自动刷新
同步操作将从 src-openEuler/ntp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
diff -Nur ntp-4.2.8p12.bak/ntpdate/ntpdate.c ntp-4.2.8p12/ntpdate/ntpdate.c
--- ntp-4.2.8p12.bak/ntpdate/ntpdate.c 2018-08-14 07:51:07.000000000 -0400
+++ ntp-4.2.8p12/ntpdate/ntpdate.c 2019-01-22 20:20:02.484000000 -0500
@@ -172,6 +172,7 @@
* Counter for keeping track of completed servers
*/
int complete_servers = 0;
+int bind_port = 0;
/*
* File of encryption keys
@@ -346,7 +347,7 @@
/*
* Decode argument list
*/
- while ((c = ntp_getopt(argc, argv, "46a:bBde:k:o:p:qst:uv")) != EOF)
+ while ((c = ntp_getopt(argc, argv, "46a:bBdr:e:k:o:p:qst:uv")) != EOF)
switch (c)
{
case '4':
@@ -371,6 +372,9 @@
case 'd':
++debug;
break;
+ case 'r':
+ bind_port = atoi(ntp_optarg);
+ break;
case 'e':
if (!atolfp(ntp_optarg, &tmp)
|| tmp.l_ui != 0) {
@@ -432,7 +436,7 @@
if (errflg) {
(void) fprintf(stderr,
- "usage: %s [-46bBdqsuv] [-a key#] [-e delay] [-k file] [-p samples] [-o version#] [-t timeo] server ...\n",
+ "usage: %s [-46bBdqsuv] [-a key#] [-e delay] [-k file] [-p samples] [-o version#] [-t timeo] [-r port] server ...\n",
progname);
exit(2);
}
@@ -1774,6 +1778,21 @@
exit(1);
}
}
+ else if (debug && bind_port > 0) {
+ ((struct sockaddr_in *)(res->ai_addr))->sin_port = htons(bind_port);
+ if (bind(fd[nbsock], res->ai_addr,
+ SOCKLEN((sockaddr_u *)res->ai_addr)) < 0) {
+#ifndef SYS_WINNT
+ if (errno == EADDRINUSE)
+#else
+ if (WSAGetLastError() == WSAEADDRINUSE)
+#endif /* SYS_WINNT */
+ msyslog(LOG_ERR, "the NTP socket is in use, exiting");
+ else
+ msyslog(LOG_ERR, "bind() fails: %m");
+ exit(1);
+ }
+ }
#ifdef HAVE_POLL_H
fdmask[nbsock].fd = fd[nbsock];
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。