diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-12-26 17:08:20 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-12-28 16:08:55 +0200 |
commit | 7e4d424ef99f39a2a6d5fd13146281d9744d3c0b (patch) | |
tree | 5693dc03580ea90a90fcfd68a84c0128e4cf8a38 /doc/cha-gtls-examples.texi | |
parent | e38f4775671c15170638c865d2edf3025930ef76 (diff) | |
download | gnutls-7e4d424ef99f39a2a6d5fd13146281d9744d3c0b.tar.gz |
Added DTLS server example.
Diffstat (limited to 'doc/cha-gtls-examples.texi')
-rw-r--r-- | doc/cha-gtls-examples.texi | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/doc/cha-gtls-examples.texi b/doc/cha-gtls-examples.texi index 7ce4ee13ed..23f76100d8 100644 --- a/doc/cha-gtls-examples.texi +++ b/doc/cha-gtls-examples.texi @@ -150,21 +150,22 @@ This section contains examples of @acronym{TLS} and @acronym{SSL} servers, using @acronym{GnuTLS}. @menu -* Echo Server with X.509 authentication:: -* Echo Server with OpenPGP authentication:: -* Echo Server with SRP authentication:: -* Echo Server with anonymous authentication:: +* Echo server with X.509 authentication:: +* Echo server with OpenPGP authentication:: +* Echo server with SRP authentication:: +* Echo server with anonymous authentication:: +* Echo DTLS server with X.509 authentication:: @end menu -@node Echo Server with X.509 authentication +@node Echo server with X.509 authentication @subsection Echo server with @acronym{X.509} authentication This example is a very simple echo server which supports -@acronym{X.509} authentication, using the RSA ciphersuites. +@acronym{X.509} authentication. @verbatiminclude examples/ex-serv1.c -@node Echo Server with OpenPGP authentication +@node Echo server with OpenPGP authentication @subsection Echo server with @acronym{OpenPGP} authentication @cindex OpenPGP server @@ -176,7 +177,7 @@ them to keep these examples as simple as possible. @verbatiminclude examples/ex-serv-pgp.c -@node Echo Server with SRP authentication +@node Echo server with SRP authentication @subsection Echo server with @acronym{SRP} authentication This is a server which supports @acronym{SRP} authentication. It is @@ -185,14 +186,22 @@ server. Here it is separate for simplicity. @verbatiminclude examples/ex-serv-srp.c -@node Echo Server with anonymous authentication -@subsection Echo Server with anonymous authentication +@node Echo server with anonymous authentication +@subsection Echo server with anonymous authentication This example server support anonymous authentication, and could be used to serve the example client for anonymous authentication. @verbatiminclude examples/ex-serv-anon.c +@node Echo DTLS server with X.509 authentication +@subsection Echo DTLS server with @acronym{X.509} authentication + +This example is a very simple echo server using Datagram TLS and +@acronym{X.509} authentication. + +@verbatiminclude examples/ex-serv-dtls.c + @node Miscellaneous examples @section Miscellaneous examples |