aboutsummaryrefslogtreecommitdiffstats
path: root/demos/bio
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-05-18 09:16:36 -0400
committerRich Salz <rsalz@openssl.org>2016-05-18 09:23:31 -0400
commit9e20068958b8c1772067299dda7df0b8a82283b4 (patch)
treed7790900dc1ecfd8ade7fc47169878297b61179d /demos/bio
parent569d0646096e6c7e07b9b89b04204eef934c3b69 (diff)
downloadopenssl-9e20068958b8c1772067299dda7df0b8a82283b4.tar.gz
Consolidate copyright for demos
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'demos/bio')
-rw-r--r--demos/bio/client-arg.c9
-rw-r--r--demos/bio/client-conf.c9
-rw-r--r--demos/bio/saccept.c9
-rw-r--r--demos/bio/sconnect.c9
-rw-r--r--demos/bio/server-arg.c9
-rw-r--r--demos/bio/server-cmod.c9
-rw-r--r--demos/bio/server-conf.c9
7 files changed, 63 insertions, 0 deletions
diff --git a/demos/bio/client-arg.c b/demos/bio/client-arg.c
index 630b166779..9e136e563d 100644
--- a/demos/bio/client-arg.c
+++ b/demos/bio/client-arg.c
@@ -1,3 +1,12 @@
+/*
+ * Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved.
+ *
+ * Licensed under the OpenSSL license (the "License"). You may not use
+ * this file except in compliance with the License. You can obtain a copy
+ * in the file LICENSE in the source distribution or at
+ * https://www.openssl.org/source/license.html
+ */
+
#include <string.h>
#include <openssl/err.h>
#include <openssl/ssl.h>
diff --git a/demos/bio/client-conf.c b/demos/bio/client-conf.c
index 4e4d4bc8df..66b5cac47c 100644
--- a/demos/bio/client-conf.c
+++ b/demos/bio/client-conf.c
@@ -1,3 +1,12 @@
+/*
+ * Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved.
+ *
+ * Licensed under the OpenSSL license (the "License"). You may not use
+ * this file except in compliance with the License. You can obtain a copy
+ * in the file LICENSE in the source distribution or at
+ * https://www.openssl.org/source/license.html
+ */
+
#include <string.h>
#include <openssl/err.h>
#include <openssl/ssl.h>
diff --git a/demos/bio/saccept.c b/demos/bio/saccept.c
index 240132cef9..106a089daf 100644
--- a/demos/bio/saccept.c
+++ b/demos/bio/saccept.c
@@ -1,3 +1,12 @@
+/*
+ * Copyright 1998-2016 The OpenSSL Project Authors. All Rights Reserved.
+ *
+ * Licensed under the OpenSSL license (the "License"). You may not use
+ * this file except in compliance with the License. You can obtain a copy
+ * in the file LICENSE in the source distribution or at
+ * https://www.openssl.org/source/license.html
+ */
+
/*-
* A minimal program to serve an SSL connection.
* It uses blocking.
diff --git a/demos/bio/sconnect.c b/demos/bio/sconnect.c
index 16dba40ff5..284bc30944 100644
--- a/demos/bio/sconnect.c
+++ b/demos/bio/sconnect.c
@@ -1,3 +1,12 @@
+/*
+ * Copyright 1998-2016 The OpenSSL Project Authors. All Rights Reserved.
+ *
+ * Licensed under the OpenSSL license (the "License"). You may not use
+ * this file except in compliance with the License. You can obtain a copy
+ * in the file LICENSE in the source distribution or at
+ * https://www.openssl.org/source/license.html
+ */
+
/*-
* 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 b2a43a9387..4e9b7bdcb0 100644
--- a/demos/bio/server-arg.c
+++ b/demos/bio/server-arg.c
@@ -1,4 +1,13 @@
/*
+ * Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved.
+ *
+ * Licensed under the OpenSSL license (the "License"). You may not use
+ * this file except in compliance with the License. You can obtain a copy
+ * in the file LICENSE in the source distribution or at
+ * https://www.openssl.org/source/license.html
+ */
+
+/*
* 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
* -L../.. -lssl -lcrypto -ldl
diff --git a/demos/bio/server-cmod.c b/demos/bio/server-cmod.c
index 51291da4b8..77b456a459 100644
--- a/demos/bio/server-cmod.c
+++ b/demos/bio/server-cmod.c
@@ -1,4 +1,13 @@
/*
+ * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
+ *
+ * Licensed under the OpenSSL license (the "License"). You may not use
+ * this file except in compliance with the License. You can obtain a copy
+ * in the file LICENSE in the source distribution or at
+ * https://www.openssl.org/source/license.html
+ */
+
+/*
* 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 db624ba1fb..32abefdf1d 100644
--- a/demos/bio/server-conf.c
+++ b/demos/bio/server-conf.c
@@ -1,4 +1,13 @@
/*
+ * Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved.
+ *
+ * Licensed under the OpenSSL license (the "License"). You may not use
+ * this file except in compliance with the License. You can obtain a copy
+ * in the file LICENSE in the source distribution or at
+ * https://www.openssl.org/source/license.html
+ */
+
+/*
* 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
* -L../.. -lssl -lcrypto -ldl