diff options
author | tb <> | 2025-01-02 12:36:21 +0000 |
---|---|---|
committer | tb <> | 2025-01-02 12:36:21 +0000 |
commit | 6ea9ba6b09ff9e35104226f2e1b9e2540f4afa4e (patch) | |
tree | 78d082465164b39c886d0b6a747ad6f53f7bf8cd | |
parent | bfe41498f545753dac1119fd7055b642e2030ceb (diff) | |
download | openbsd-6ea9ba6b09ff9e35104226f2e1b9e2540f4afa4e.tar.gz openbsd-6ea9ba6b09ff9e35104226f2e1b9e2540f4afa4e.tar.bz2 openbsd-6ea9ba6b09ff9e35104226f2e1b9e2540f4afa4e.zip |
openssl(1) doesn't need 5 .h files: merge timeouts.h into apps.h
This is an extra header for two stupid constants...
discussed with jsing
-rw-r--r-- | src/usr.bin/openssl/apps.h | 6 | ||||
-rw-r--r-- | src/usr.bin/openssl/s_client.c | 3 | ||||
-rw-r--r-- | src/usr.bin/openssl/s_server.c | 3 | ||||
-rw-r--r-- | src/usr.bin/openssl/timeouts.h | 67 |
4 files changed, 7 insertions, 72 deletions
diff --git a/src/usr.bin/openssl/apps.h b/src/usr.bin/openssl/apps.h index f5f654d6d2..f8d67ccacd 100644 --- a/src/usr.bin/openssl/apps.h +++ b/src/usr.bin/openssl/apps.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: apps.h,v 1.39 2025/01/02 12:31:44 tb Exp $ */ | 1 | /* $OpenBSD: apps.h,v 1.40 2025/01/02 12:36:21 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -128,6 +128,10 @@ | |||
128 | 128 | ||
129 | #include <unistd.h> | 129 | #include <unistd.h> |
130 | 130 | ||
131 | /* numbers in us */ | ||
132 | #define DGRAM_RCV_TIMEOUT 250000 | ||
133 | #define DGRAM_SND_TIMEOUT 250000 | ||
134 | |||
131 | extern CONF *config; | 135 | extern CONF *config; |
132 | extern char *default_config_file; | 136 | extern char *default_config_file; |
133 | extern BIO *bio_err; | 137 | extern BIO *bio_err; |
diff --git a/src/usr.bin/openssl/s_client.c b/src/usr.bin/openssl/s_client.c index 299042c59a..45260ac875 100644 --- a/src/usr.bin/openssl/s_client.c +++ b/src/usr.bin/openssl/s_client.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s_client.c,v 1.64 2023/12/29 12:15:49 tb Exp $ */ | 1 | /* $OpenBSD: s_client.c,v 1.65 2025/01/02 12:36:21 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -160,7 +160,6 @@ | |||
160 | #include <openssl/x509.h> | 160 | #include <openssl/x509.h> |
161 | 161 | ||
162 | #include "s_apps.h" | 162 | #include "s_apps.h" |
163 | #include "timeouts.h" | ||
164 | 163 | ||
165 | /*#define SSL_HOST_NAME "www.netscape.com" */ | 164 | /*#define SSL_HOST_NAME "www.netscape.com" */ |
166 | /*#define SSL_HOST_NAME "193.118.187.102" */ | 165 | /*#define SSL_HOST_NAME "193.118.187.102" */ |
diff --git a/src/usr.bin/openssl/s_server.c b/src/usr.bin/openssl/s_server.c index 328ac28ab5..8984586ab5 100644 --- a/src/usr.bin/openssl/s_server.c +++ b/src/usr.bin/openssl/s_server.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s_server.c,v 1.59 2023/12/29 12:15:49 tb Exp $ */ | 1 | /* $OpenBSD: s_server.c,v 1.60 2025/01/02 12:36:21 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -175,7 +175,6 @@ | |||
175 | #include <openssl/rsa.h> | 175 | #include <openssl/rsa.h> |
176 | 176 | ||
177 | #include "s_apps.h" | 177 | #include "s_apps.h" |
178 | #include "timeouts.h" | ||
179 | 178 | ||
180 | static void s_server_init(void); | 179 | static void s_server_init(void); |
181 | static void sv_usage(void); | 180 | static void sv_usage(void); |
diff --git a/src/usr.bin/openssl/timeouts.h b/src/usr.bin/openssl/timeouts.h deleted file mode 100644 index dd2f85028d..0000000000 --- a/src/usr.bin/openssl/timeouts.h +++ /dev/null | |||
@@ -1,67 +0,0 @@ | |||
1 | /* $OpenBSD: timeouts.h,v 1.1 2014/08/26 17:47:25 jsing Exp $ */ | ||
2 | /* | ||
3 | * DTLS implementation written by Nagendra Modadugu | ||
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | ||
5 | */ | ||
6 | /* ==================================================================== | ||
7 | * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. | ||
8 | * | ||
9 | * Redistribution and use in source and binary forms, with or without | ||
10 | * modification, are permitted provided that the following conditions | ||
11 | * are met: | ||
12 | * | ||
13 | * 1. Redistributions of source code must retain the above copyright | ||
14 | * notice, this list of conditions and the following disclaimer. | ||
15 | * | ||
16 | * 2. Redistributions in binary form must reproduce the above copyright | ||
17 | * notice, this list of conditions and the following disclaimer in | ||
18 | * the documentation and/or other materials provided with the | ||
19 | * distribution. | ||
20 | * | ||
21 | * 3. All advertising materials mentioning features or use of this | ||
22 | * software must display the following acknowledgment: | ||
23 | * "This product includes software developed by the OpenSSL Project | ||
24 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
25 | * | ||
26 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
27 | * endorse or promote products derived from this software without | ||
28 | * prior written permission. For written permission, please contact | ||
29 | * openssl-core@OpenSSL.org. | ||
30 | * | ||
31 | * 5. Products derived from this software may not be called "OpenSSL" | ||
32 | * nor may "OpenSSL" appear in their names without prior written | ||
33 | * permission of the OpenSSL Project. | ||
34 | * | ||
35 | * 6. Redistributions of any form whatsoever must retain the following | ||
36 | * acknowledgment: | ||
37 | * "This product includes software developed by the OpenSSL Project | ||
38 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
39 | * | ||
40 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
41 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
43 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
44 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
45 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
46 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
47 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
49 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
50 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
51 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
52 | * ==================================================================== | ||
53 | * | ||
54 | * This product includes cryptographic software written by Eric Young | ||
55 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
56 | * Hudson (tjh@cryptsoft.com). | ||
57 | * | ||
58 | */ | ||
59 | |||
60 | #ifndef INCLUDED_TIMEOUTS_H | ||
61 | #define INCLUDED_TIMEOUTS_H | ||
62 | |||
63 | /* numbers in us */ | ||
64 | #define DGRAM_RCV_TIMEOUT 250000 | ||
65 | #define DGRAM_SND_TIMEOUT 250000 | ||
66 | |||
67 | #endif /* ! INCLUDED_TIMEOUTS_H */ | ||