summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2009-05-13 16:10:29 +0200
committerSimon Josefsson <simon@josefsson.org>2009-05-13 16:10:29 +0200
commit383eaa531efa0545814cc801e8f6e23a594e0e1e (patch)
tree8b6fa1b594472cf379b2d4d0faec846880610878 /doc
parentbda7cc8921bf2814b4cb9a43fee74b8444d128d1 (diff)
downloadgnutls-383eaa531efa0545814cc801e8f6e23a594e0e1e.tar.gz
Place examples in public domain. After discussion with Karl.
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/ex-alert.c7
-rw-r--r--doc/examples/ex-cert-select.c7
-rw-r--r--doc/examples/ex-client-psk.c7
-rw-r--r--doc/examples/ex-client-resume.c7
-rw-r--r--doc/examples/ex-client-srp.c7
-rw-r--r--doc/examples/ex-client-tlsia.c7
-rw-r--r--doc/examples/ex-client1.c7
-rw-r--r--doc/examples/ex-client2.c7
-rw-r--r--doc/examples/ex-crq.c7
-rw-r--r--doc/examples/ex-pkcs12.c7
-rw-r--r--doc/examples/ex-rfc2818.c7
-rw-r--r--doc/examples/ex-serv-anon.c7
-rw-r--r--doc/examples/ex-serv-export.c7
-rw-r--r--doc/examples/ex-serv-pgp.c7
-rw-r--r--doc/examples/ex-serv-psk.c7
-rw-r--r--doc/examples/ex-serv-srp.c7
-rw-r--r--doc/examples/ex-serv1.c7
-rw-r--r--doc/examples/ex-session-info.c7
-rw-r--r--doc/examples/ex-verify.c7
-rw-r--r--doc/examples/ex-x509-info.c7
-rw-r--r--doc/examples/tcp.c7
21 files changed, 21 insertions, 126 deletions
diff --git a/doc/examples/ex-alert.c b/doc/examples/ex-alert.c
index ba708a366c..5d23f7e34c 100644
--- a/doc/examples/ex-alert.c
+++ b/doc/examples/ex-alert.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-cert-select.c b/doc/examples/ex-cert-select.c
index 09b3324637..5e422a0766 100644
--- a/doc/examples/ex-cert-select.c
+++ b/doc/examples/ex-cert-select.c
@@ -1,9 +1,4 @@
-/* Copyright 2007 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-client-psk.c b/doc/examples/ex-client-psk.c
index 09fff2a1de..d4edfdd8c3 100644
--- a/doc/examples/ex-client-psk.c
+++ b/doc/examples/ex-client-psk.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008, 2009 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-client-resume.c b/doc/examples/ex-client-resume.c
index e71642a1c5..f64004450f 100644
--- a/doc/examples/ex-client-resume.c
+++ b/doc/examples/ex-client-resume.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008, 2009 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-client-srp.c b/doc/examples/ex-client-srp.c
index 40700d8331..6a8dd68a73 100644
--- a/doc/examples/ex-client-srp.c
+++ b/doc/examples/ex-client-srp.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2009 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-client-tlsia.c b/doc/examples/ex-client-tlsia.c
index 9e78c9ad8d..53a46132a0 100644
--- a/doc/examples/ex-client-tlsia.c
+++ b/doc/examples/ex-client-tlsia.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008, 2009 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-client1.c b/doc/examples/ex-client1.c
index 667b9268bb..16305a682b 100644
--- a/doc/examples/ex-client1.c
+++ b/doc/examples/ex-client1.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2009 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-client2.c b/doc/examples/ex-client2.c
index 33cf129d1e..dfb9e12713 100644
--- a/doc/examples/ex-client2.c
+++ b/doc/examples/ex-client2.c
@@ -1,9 +1,4 @@
-/* Copyright 2007 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-crq.c b/doc/examples/ex-crq.c
index 0b2bfce86f..9d40e90772 100644
--- a/doc/examples/ex-crq.c
+++ b/doc/examples/ex-crq.c
@@ -1,9 +1,4 @@
-/* Copyright 2007 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-pkcs12.c b/doc/examples/ex-pkcs12.c
index 23363c78d4..ef7d38a629 100644
--- a/doc/examples/ex-pkcs12.c
+++ b/doc/examples/ex-pkcs12.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-rfc2818.c b/doc/examples/ex-rfc2818.c
index 010fb30d67..73a3d1bd51 100644
--- a/doc/examples/ex-rfc2818.c
+++ b/doc/examples/ex-rfc2818.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-serv-anon.c b/doc/examples/ex-serv-anon.c
index 390cd1cfd4..155cbe480f 100644
--- a/doc/examples/ex-serv-anon.c
+++ b/doc/examples/ex-serv-anon.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-serv-export.c b/doc/examples/ex-serv-export.c
index fafade0aee..236ab0da66 100644
--- a/doc/examples/ex-serv-export.c
+++ b/doc/examples/ex-serv-export.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008, 2009 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-serv-pgp.c b/doc/examples/ex-serv-pgp.c
index 954baf61cf..1e0124f0be 100644
--- a/doc/examples/ex-serv-pgp.c
+++ b/doc/examples/ex-serv-pgp.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-serv-psk.c b/doc/examples/ex-serv-psk.c
index 5c53d05e53..0082414512 100644
--- a/doc/examples/ex-serv-psk.c
+++ b/doc/examples/ex-serv-psk.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-serv-srp.c b/doc/examples/ex-serv-srp.c
index ea50abd854..559f7ac7bc 100644
--- a/doc/examples/ex-serv-srp.c
+++ b/doc/examples/ex-serv-srp.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-serv1.c b/doc/examples/ex-serv1.c
index 7146e78723..06a76fbaed 100644
--- a/doc/examples/ex-serv1.c
+++ b/doc/examples/ex-serv1.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-session-info.c b/doc/examples/ex-session-info.c
index 3ddbd3b38d..146d81a092 100644
--- a/doc/examples/ex-session-info.c
+++ b/doc/examples/ex-session-info.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-verify.c b/doc/examples/ex-verify.c
index ab3f2c6dad..9c89d51b73 100644
--- a/doc/examples/ex-verify.c
+++ b/doc/examples/ex-verify.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/ex-x509-info.c b/doc/examples/ex-x509-info.c
index 1fe3684100..6e575c3d36 100644
--- a/doc/examples/ex-x509-info.c
+++ b/doc/examples/ex-x509-info.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/doc/examples/tcp.c b/doc/examples/tcp.c
index 876e706057..b13c65c173 100644
--- a/doc/examples/tcp.c
+++ b/doc/examples/tcp.c
@@ -1,9 +1,4 @@
-/* Copyright 2007, 2008 Free Software Foundation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
+/* This example code is placed in the public domain. */
#ifdef HAVE_CONFIG_H
# include <config.h>