aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Uzunov <andrey.uzunov@gmail.com>2013-07-20 18:49:59 +0000
committerAndrey Uzunov <andrey.uzunov@gmail.com>2013-07-20 18:49:59 +0000
commit84205b371f6f335e7a11ea37488c44086eb13d26 (patch)
treef3c83d60916e334329ba3d03494c8e9a4c4b9379
parenta754b1b3cffd1bbeb8629d060f6466f358cad8c1 (diff)
downloadlibmicrohttpd-84205b371f6f335e7a11ea37488c44086eb13d26.tar.gz
libmicrohttpd-84205b371f6f335e7a11ea37488c44086eb13d26.zip
mhd2spdy: info in source headers
-rw-r--r--src/examples/mhd2spdy.c19
-rw-r--r--src/examples/mhd2spdy_http.c3
-rw-r--r--src/examples/mhd2spdy_http.h3
-rw-r--r--src/examples/mhd2spdy_spdy.c6
-rw-r--r--src/examples/mhd2spdy_spdy.h3
-rw-r--r--src/examples/mhd2spdy_structures.c3
-rw-r--r--src/examples/mhd2spdy_structures.h3
7 files changed, 21 insertions, 19 deletions
diff --git a/src/examples/mhd2spdy.c b/src/examples/mhd2spdy.c
index 10d0afd4..d921aa27 100644
--- a/src/examples/mhd2spdy.c
+++ b/src/examples/mhd2spdy.c
@@ -16,21 +16,16 @@
16*/ 16*/
17 17
18/** 18/**
19 * @file structures.h 19 * @file mhd2spdy.c
20 * @brief The main file of the HTTP-to-SPDY proxy with the 'main' function
21 * and event loop. No threads are used.
22 * Currently only GET is supported.
23 * TODOs:
24 * - non blocking SSL connect
25 * - check certificate
20 * @author Andrey Uzunov 26 * @author Andrey Uzunov
21 */ 27 */
22 28
23 /*
24 * TODOs
25 * non blocking SSL connect
26 * check certificate
27 *
28 *
29 *
30 *
31
32
33 */
34 29
35#include "mhd2spdy_structures.h" 30#include "mhd2spdy_structures.h"
36#include "mhd2spdy_spdy.h" 31#include "mhd2spdy_spdy.h"
diff --git a/src/examples/mhd2spdy_http.c b/src/examples/mhd2spdy_http.c
index 2c8d4c23..4761c086 100644
--- a/src/examples/mhd2spdy_http.c
+++ b/src/examples/mhd2spdy_http.c
@@ -16,7 +16,8 @@
16*/ 16*/
17 17
18/** 18/**
19 * @file structures.h 19 * @file mhd2spdy_http.c
20 * @brief HTTP part of the proxy. libmicrohttpd is used for the server side.
20 * @author Andrey Uzunov 21 * @author Andrey Uzunov
21 */ 22 */
22 23
diff --git a/src/examples/mhd2spdy_http.h b/src/examples/mhd2spdy_http.h
index 484e86d1..78685c69 100644
--- a/src/examples/mhd2spdy_http.h
+++ b/src/examples/mhd2spdy_http.h
@@ -16,7 +16,8 @@
16*/ 16*/
17 17
18/** 18/**
19 * @file structures.h 19 * @file mhd2spdy_http.h
20 * @brief HTTP part of the proxy. libmicrohttpd is used for the server side.
20 * @author Andrey Uzunov 21 * @author Andrey Uzunov
21 */ 22 */
22 23
diff --git a/src/examples/mhd2spdy_spdy.c b/src/examples/mhd2spdy_spdy.c
index 9c5b94f5..8640df35 100644
--- a/src/examples/mhd2spdy_spdy.c
+++ b/src/examples/mhd2spdy_spdy.c
@@ -1,5 +1,4 @@
1/* 1/*
2 * Spdylay - SPDY Library
3 * 2 *
4 * Copyright (c) 2012 Tatsuhiro Tsujikawa 3 * Copyright (c) 2012 Tatsuhiro Tsujikawa
5 * 4 *
@@ -24,7 +23,10 @@
24 */ 23 */
25 24
26/** 25/**
27 * @file spdy.c 26 * @file mhd2spdy_spdy.c
27 * @brief SPDY part of the proxy. libspdylay is used for the client side.
28 * The example spdycli.c from spdylay was used as basis;
29 * however, multiple changes were made.
28 * @author Tatsuhiro Tsujikawa 30 * @author Tatsuhiro Tsujikawa
29 * @author Andrey Uzunov 31 * @author Andrey Uzunov
30 */ 32 */
diff --git a/src/examples/mhd2spdy_spdy.h b/src/examples/mhd2spdy_spdy.h
index 04fcf9d2..fa27e7f6 100644
--- a/src/examples/mhd2spdy_spdy.h
+++ b/src/examples/mhd2spdy_spdy.h
@@ -16,7 +16,8 @@
16*/ 16*/
17 17
18/** 18/**
19 * @file spdy.h 19 * @file mhd2spdy_spdy.h
20 * @brief SPDY part of the proxy. libspdylay is used for the client side.
20 * @author Andrey Uzunov 21 * @author Andrey Uzunov
21 */ 22 */
22 23
diff --git a/src/examples/mhd2spdy_structures.c b/src/examples/mhd2spdy_structures.c
index f7d54c4c..da29581c 100644
--- a/src/examples/mhd2spdy_structures.c
+++ b/src/examples/mhd2spdy_structures.c
@@ -16,7 +16,8 @@
16*/ 16*/
17 17
18/** 18/**
19 * @file structures.h 19 * @file mhd2spdy_structures.h
20 * @brief Common functions, macros.
20 * @author Andrey Uzunov 21 * @author Andrey Uzunov
21 */ 22 */
22 23
diff --git a/src/examples/mhd2spdy_structures.h b/src/examples/mhd2spdy_structures.h
index 0900964f..6d6d9769 100644
--- a/src/examples/mhd2spdy_structures.h
+++ b/src/examples/mhd2spdy_structures.h
@@ -16,7 +16,8 @@
16*/ 16*/
17 17
18/** 18/**
19 * @file structures.h 19 * @file mhd2spdy_structures.h
20 * @brief Common structures, functions, macros and global variables.
20 * @author Andrey Uzunov 21 * @author Andrey Uzunov
21 */ 22 */
22#ifndef STRUCTURES_H 23#ifndef STRUCTURES_H