libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 84205b371f6f335e7a11ea37488c44086eb13d26
parent a754b1b3cffd1bbeb8629d060f6466f358cad8c1
Author: Andrey Uzunov <andrey.uzunov@gmail.com>
Date:   Sat, 20 Jul 2013 18:49:59 +0000

mhd2spdy: info in source headers

Diffstat:
Msrc/examples/mhd2spdy.c | 19+++++++------------
Msrc/examples/mhd2spdy_http.c | 3++-
Msrc/examples/mhd2spdy_http.h | 3++-
Msrc/examples/mhd2spdy_spdy.c | 6++++--
Msrc/examples/mhd2spdy_spdy.h | 3++-
Msrc/examples/mhd2spdy_structures.c | 3++-
Msrc/examples/mhd2spdy_structures.h | 3++-
7 files changed, 21 insertions(+), 19 deletions(-)

diff --git a/src/examples/mhd2spdy.c b/src/examples/mhd2spdy.c @@ -16,21 +16,16 @@ */ /** - * @file structures.h + * @file mhd2spdy.c + * @brief The main file of the HTTP-to-SPDY proxy with the 'main' function + * and event loop. No threads are used. + * Currently only GET is supported. + * TODOs: + * - non blocking SSL connect + * - check certificate * @author Andrey Uzunov */ - /* - * TODOs - * non blocking SSL connect - * check certificate - * - * - * - * - - - */ #include "mhd2spdy_structures.h" #include "mhd2spdy_spdy.h" diff --git a/src/examples/mhd2spdy_http.c b/src/examples/mhd2spdy_http.c @@ -16,7 +16,8 @@ */ /** - * @file structures.h + * @file mhd2spdy_http.c + * @brief HTTP part of the proxy. libmicrohttpd is used for the server side. * @author Andrey Uzunov */ diff --git a/src/examples/mhd2spdy_http.h b/src/examples/mhd2spdy_http.h @@ -16,7 +16,8 @@ */ /** - * @file structures.h + * @file mhd2spdy_http.h + * @brief HTTP part of the proxy. libmicrohttpd is used for the server side. * @author Andrey Uzunov */ diff --git a/src/examples/mhd2spdy_spdy.c b/src/examples/mhd2spdy_spdy.c @@ -1,5 +1,4 @@ /* - * Spdylay - SPDY Library * * Copyright (c) 2012 Tatsuhiro Tsujikawa * @@ -24,7 +23,10 @@ */ /** - * @file spdy.c + * @file mhd2spdy_spdy.c + * @brief SPDY part of the proxy. libspdylay is used for the client side. + * The example spdycli.c from spdylay was used as basis; + * however, multiple changes were made. * @author Tatsuhiro Tsujikawa * @author Andrey Uzunov */ diff --git a/src/examples/mhd2spdy_spdy.h b/src/examples/mhd2spdy_spdy.h @@ -16,7 +16,8 @@ */ /** - * @file spdy.h + * @file mhd2spdy_spdy.h + * @brief SPDY part of the proxy. libspdylay is used for the client side. * @author Andrey Uzunov */ diff --git a/src/examples/mhd2spdy_structures.c b/src/examples/mhd2spdy_structures.c @@ -16,7 +16,8 @@ */ /** - * @file structures.h + * @file mhd2spdy_structures.h + * @brief Common functions, macros. * @author Andrey Uzunov */ diff --git a/src/examples/mhd2spdy_structures.h b/src/examples/mhd2spdy_structures.h @@ -16,7 +16,8 @@ */ /** - * @file structures.h + * @file mhd2spdy_structures.h + * @brief Common structures, functions, macros and global variables. * @author Andrey Uzunov */ #ifndef STRUCTURES_H