Commit a214feb2 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Don't allow -www etc options with DTLS.

The options which emulate a web server don't make sense when doing DTLS.
Exit with an error if an attempt is made to use them.

PR#3453
(cherry picked from commit 58a2aaeade8bdecd0f9f0df41927f7cff3012547)
parent 7a3a82db
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -1095,6 +1095,14 @@ bad:
		sv_usage();
		goto end;
		}
#ifndef OPENSSL_NO_DTLS1
	if (www && socket_type == SOCK_DGRAM)
		{
		BIO_printf(bio_err,
				"Can't use -HTTP, -www or -WWW with DTLS\n");
		goto end;
		}
#endif

	SSL_load_error_strings();
	OpenSSL_add_ssl_algorithms();