aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-11-05 21:54:44 +0000
committerChristian Grothoff <christian@grothoff.org>2010-11-05 21:54:44 +0000
commitbdc3b54372a92874c2ecb58069eac5bdfe6fcddc (patch)
tree575c606a8f81c1f0baabad43bf34789023513ee7 /src/transport/plugin_transport_http.c
parentf0963cfb7a694f9a7c7ff28471660242529f00a8 (diff)
downloadgnunet-bdc3b54372a92874c2ecb58069eac5bdfe6fcddc.tar.gz
gnunet-bdc3b54372a92874c2ecb58069eac5bdfe6fcddc.zip
moving plugin headers
Diffstat (limited to 'src/transport/plugin_transport_http.c')
-rw-r--r--src/transport/plugin_transport_http.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/transport/plugin_transport_http.c b/src/transport/plugin_transport_http.c
index ad8ced567..f70397dc5 100644
--- a/src/transport/plugin_transport_http.c
+++ b/src/transport/plugin_transport_http.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file transport/plugin_transport_http.c 22 * @file transport/gnunet_transport_plugin.http.c
23 * @brief http transport service plugin 23 * @brief http transport service plugin
24 * @author Matthias Wachs 24 * @author Matthias Wachs
25 */ 25 */
@@ -35,19 +35,19 @@
35#include "gnunet_resolver_service.h" 35#include "gnunet_resolver_service.h"
36#include "gnunet_server_lib.h" 36#include "gnunet_server_lib.h"
37#include "gnunet_container_lib.h" 37#include "gnunet_container_lib.h"
38#include "plugin_transport.h" 38#include "gnunet_transport_plugin.h"
39#include "gnunet_os_lib.h" 39#include "gnunet_os_lib.h"
40#include "microhttpd.h" 40#include "microhttpd.h"
41#include <curl/curl.h> 41#include <curl/curl.h>
42 42
43#if BUILD_HTTPS 43#if BUILD_HTTPS
44#define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_plugin_transport_https_init 44#define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_gnunet_transport_plugin.https_init
45#define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_plugin_transport_https_done 45#define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_gnunet_transport_plugin.https_done
46#define LIBGNUNET_PLUGIN_TRANSPORT_COMPONENT transport_https 46#define LIBGNUNET_PLUGIN_TRANSPORT_COMPONENT transport_https
47#define PROTOCOL_PREFIX "https" 47#define PROTOCOL_PREFIX "https"
48#else 48#else
49#define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_plugin_transport_http_init 49#define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_gnunet_transport_plugin.http_init
50#define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_plugin_transport_http_done 50#define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_gnunet_transport_plugin.http_done
51#define LIBGNUNET_PLUGIN_TRANSPORT_COMPONENT transport_http 51#define LIBGNUNET_PLUGIN_TRANSPORT_COMPONENT transport_http
52#define PROTOCOL_PREFIX "http" 52#define PROTOCOL_PREFIX "http"
53#endif 53#endif
@@ -3099,4 +3099,4 @@ LIBGNUNET_PLUGIN_TRANSPORT_INIT (void *cls)
3099 return api; 3099 return api;
3100} 3100}
3101 3101
3102/* end of plugin_transport_http.c */ 3102/* end of gnunet_transport_plugin.http.c */