aboutsummaryrefslogtreecommitdiffstats
path: root/demos/bio/server-arg.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/bio/server-arg.c')
-rw-r--r--demos/bio/server-arg.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/demos/bio/server-arg.c b/demos/bio/server-arg.c
index cf8e86b754..be35e6210b 100644
--- a/demos/bio/server-arg.c
+++ b/demos/bio/server-arg.c
@@ -1,13 +1,11 @@
/* NOCW */
-/* demos/bio/saccept.c */
+/* demos/bio/server-arg.c */
-/* A minimal program to server an SSL connection.
+/* A minimal program to serve an SSL connection.
* It uses blocking.
- * saccept host:port
- * host is the interface IP to use. If any interface, use *:port
- * The default it *:4433
+ * It use the SSL_CONF API with the command line.
*
- * cc -I../../include saccept.c -L../.. -lssl -lcrypto
+ * cc -I../../include server-arg.c -L../.. -lssl -lcrypto -ldl
*/
#include <stdio.h>
@@ -90,8 +88,8 @@ int main(int argc, char *argv[])
if ((in=BIO_new_accept(port)) == NULL) goto err;
- /* This means that when a new connection is acceptede on 'in',
- * The ssl_bio will be 'dupilcated' and have the new socket
+ /* This means that when a new connection is accepted on 'in',
+ * The ssl_bio will be 'duplicated' and have the new socket
* BIO push into it. Basically it means the SSL BIO will be
* automatically setup */
BIO_set_accept_bios(in,ssl_bio);