summaryrefslogtreecommitdiffstats
path: root/demos/bio
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-12-18 12:57:23 -0500
committerRich Salz <rsalz@openssl.org>2016-01-26 16:40:43 -0500
commit349807608f31b20af01a342d0072bb92e0b036e2 (patch)
treef937ebb9a6b53c3f7d6636e67d7e3a3398ccf34a /demos/bio
parent97ad4870299378741dcdd88189f19da78431afd9 (diff)
Remove /* foo.c */ comments
This was done by the following find . -name '*.[ch]' | /tmp/pl where /tmp/pl is the following three-line script: print unless $. == 1 && m@/\* .*\.[ch] \*/@; close ARGV if eof; # Close file to reset $. And then some hand-editing of other files. Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'demos/bio')
-rw-r--r--demos/bio/saccept.c3
-rw-r--r--demos/bio/sconnect.c3
-rw-r--r--demos/bio/server-arg.c3
-rw-r--r--demos/bio/server-cmod.c3
-rw-r--r--demos/bio/server-conf.c3
5 files changed, 0 insertions, 15 deletions
diff --git a/demos/bio/saccept.c b/demos/bio/saccept.c
index b6d0361a9c..240132cef9 100644
--- a/demos/bio/saccept.c
+++ b/demos/bio/saccept.c
@@ -1,6 +1,3 @@
-/* NOCW */
-/* demos/bio/saccept.c */
-
/*-
* A minimal program to serve an SSL connection.
* It uses blocking.
diff --git a/demos/bio/sconnect.c b/demos/bio/sconnect.c
index 2b610cc8b5..16dba40ff5 100644
--- a/demos/bio/sconnect.c
+++ b/demos/bio/sconnect.c
@@ -1,6 +1,3 @@
-/* NOCW */
-/* demos/bio/sconnect.c */
-
/*-
* A minimal program to do SSL to a passed host and port.
* It is actually using non-blocking IO but in a very simple manner
diff --git a/demos/bio/server-arg.c b/demos/bio/server-arg.c
index 242ca6c0af..b2a43a9387 100644
--- a/demos/bio/server-arg.c
+++ b/demos/bio/server-arg.c
@@ -1,6 +1,3 @@
-/* NOCW */
-/* demos/bio/server-arg.c */
-
/*
* A minimal program to serve an SSL connection. It uses blocking. It use the
* SSL_CONF API with the command line. cc -I../../include server-arg.c
diff --git a/demos/bio/server-cmod.c b/demos/bio/server-cmod.c
index 4f0b0c0f05..51291da4b8 100644
--- a/demos/bio/server-cmod.c
+++ b/demos/bio/server-cmod.c
@@ -1,6 +1,3 @@
-/* NOCW */
-/* demos/bio/server-cmod.c */
-
/*
* A minimal TLS server it ses SSL_CTX_config and a configuration file to
* set most server parameters.
diff --git a/demos/bio/server-conf.c b/demos/bio/server-conf.c
index bf3dd067e5..db624ba1fb 100644
--- a/demos/bio/server-conf.c
+++ b/demos/bio/server-conf.c
@@ -1,6 +1,3 @@
-/* NOCW */
-/* demos/bio/saccept-conf.c */
-
/*
* A minimal program to serve an SSL connection. It uses blocking. It uses
* the SSL_CONF API with a configuration file. cc -I../../include saccept.c