From b48e6fb097c62bb246629ee7a182c57e497e4130 Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Sat, 19 Dec 2015 15:36:40 -0500 Subject: CLI rewrite The command line tools' origin as a collection of examples and test programs glued together led to some unfortunate problems; lots of hardcoded values, missing parameters, and obsolete crypto. Adds a small library for writing command line programs of the sort needed here (cli.h), which cuts the length of many of the commands in half and makes commands more pleasant to write and extend. Generalizes a lot of the commands also, eg previously only signing/verification with DSA/SHA-1 was included! Removes the fuzzer entry point since that's fairly useless outside of an instrumented build. Removes the in-library API for benchmarking. --- src/build-data/os/darwin.txt | 1 + src/build-data/os/dragonfly.txt | 1 + src/build-data/os/freebsd.txt | 1 + src/build-data/os/linux.txt | 1 + src/build-data/os/openbsd.txt | 1 + 5 files changed, 5 insertions(+) (limited to 'src/build-data') diff --git a/src/build-data/os/darwin.txt b/src/build-data/os/darwin.txt index b1f2363dc..f95e8f5e8 100644 --- a/src/build-data/os/darwin.txt +++ b/src/build-data/os/darwin.txt @@ -17,6 +17,7 @@ gmtime_r memset_s readdir timegm +sockets diff --git a/src/build-data/os/dragonfly.txt b/src/build-data/os/dragonfly.txt index ff8f41d2a..f9137d3c1 100644 --- a/src/build-data/os/dragonfly.txt +++ b/src/build-data/os/dragonfly.txt @@ -4,4 +4,5 @@ os_type unix clock_gettime gettimeofday posix_mlock +sockets diff --git a/src/build-data/os/freebsd.txt b/src/build-data/os/freebsd.txt index 510a7accd..dfe3d2edf 100644 --- a/src/build-data/os/freebsd.txt +++ b/src/build-data/os/freebsd.txt @@ -8,4 +8,5 @@ gmtime_r dlopen readdir timegm +sockets diff --git a/src/build-data/os/linux.txt b/src/build-data/os/linux.txt index bb65055e4..42f101c3d 100644 --- a/src/build-data/os/linux.txt +++ b/src/build-data/os/linux.txt @@ -12,6 +12,7 @@ gmtime_r dlopen readdir timegm +sockets diff --git a/src/build-data/os/openbsd.txt b/src/build-data/os/openbsd.txt index 510a7accd..dfe3d2edf 100644 --- a/src/build-data/os/openbsd.txt +++ b/src/build-data/os/openbsd.txt @@ -8,4 +8,5 @@ gmtime_r dlopen readdir timegm +sockets -- cgit v1.2.3