[Git][NTPsec/ntpsec][stop-CI-for-debian-oldoldstable] 3 commits: Fix for wrong length in response from server

Matt Selsky gitlab at mg.gitlab.com
Sat Mar 23 16:20:35 UTC 2019



Matt Selsky pushed to branch stop-CI-for-debian-oldoldstable at NTPsec / ntpsec


Commits:
afcc8cd2 by Hal Murray at 2019-03-23T14:29:44Z
Fix for wrong length in response from server

- - - - -
760dbaee by Hal Murray at 2019-03-23T15:19:22Z
Add strerror to the multi-thread msyslog list

- - - - -
3a7bbdaf by Matt Selsky at 2019-03-23T16:20:29Z
Remove CI jobs for Debian "oldoldstable"

"oldoldstable" is two releases behind the current stable release.  It's not
supported by upstream so we should not build for it.

And the CI builds for "wheezy" broke today when "oldoldstable"'s repo was moved
from deb.debian.org to archive.debian.org as announced at
https://lists.debian.org/debian-devel-announce/2019/03/msg00006.html

The container images at https://hub.docker.com/_/debian and
https://github.com/debuerreotype/docker-debian-artifacts/blob/3e751c2c2f60037e9231ed94bbd1f95347af2c87/oldoldstable/slim/Dockerfile
have not yet caught up with the new repo location.

- - - - -


3 changed files:

- .gitlab-ci.yml
- devel/TODO-NTS
- ntpd/nts_extens.c


Changes:

=====================================
.gitlab-ci.yml
=====================================
@@ -96,26 +96,6 @@ alpine-edge-refclocks:
   tags:
     - gitlab-org
 
-debian-oldoldstable-basic:
-  <<: *job_definition
-  image: debian:oldoldstable-slim
-  script:
-    - apt-get update
-    - apt-get install -y netbase bison gcc libssl-dev libcap-dev pps-tools python-dev
-    - python ./waf configure build
-  tags:
-    - gitlab-org
-
-debian-oldoldstable-refclocks:
-  <<: *job_definition
-  image: debian:oldoldstable-slim
-  script:
-    - apt-get update
-    - apt-get install -y netbase bison gcc libssl-dev libcap-dev pps-tools python-dev
-    - python ./waf configure --refclock=all build
-  tags:
-    - gitlab-org
-
 debian-oldstable-basic:
   <<: *job_definition
   image: debian:oldstable-slim


=====================================
devel/TODO-NTS
=====================================
@@ -1,5 +1,6 @@
 multithread msyslog
   libntp/lib_strbuf.c too
+  strerror
 
 documentation:
   HOWTO on NTS


=====================================
ntpd/nts_extens.c
=====================================
@@ -265,7 +265,7 @@ int extens_server_send(struct ntspacket_t *ntspacket, struct pkt *xpkt) {
   aeadlen = NTP_EX_U16_LNG*2+NONCE_LENGTH+CMAC_LENGTH + plainleng;
   ex_append_header(&buf, NTS_AEEF, aeadlen);
   append_uint16(&buf, NONCE_LENGTH);
-  append_uint16(&buf, plainleng);
+  append_uint16(&buf, plainleng+CMAC_LENGTH);
 
   nonce = buf.next;
   RAND_bytes(nonce, NONCE_LENGTH);



View it on GitLab: https://gitlab.com/NTPsec/ntpsec/compare/1ab7e01dd519104b6b0db9536f70c92e2cca9b55...3a7bbdaf10d3bb590ffca6aa9649174eed4120bb

-- 
View it on GitLab: https://gitlab.com/NTPsec/ntpsec/compare/1ab7e01dd519104b6b0db9536f70c92e2cca9b55...3a7bbdaf10d3bb590ffca6aa9649174eed4120bb
You're receiving this email because of your account on gitlab.com.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.ntpsec.org/pipermail/vc/attachments/20190323/dfda3c8e/attachment-0001.html>


More information about the vc mailing list