gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r7594 - libmicrohttpd/src/daemon


From: gnunet
Subject: [GNUnet-SVN] r7594 - libmicrohttpd/src/daemon
Date: Sun, 24 Aug 2008 12:02:27 -0600 (MDT)

Author: grothoff
Date: 2008-08-24 12:02:27 -0600 (Sun, 24 Aug 2008)
New Revision: 7594

Added:
   libmicrohttpd/src/daemon/connection_https.h
Modified:
   libmicrohttpd/src/daemon/Makefile.am
   libmicrohttpd/src/daemon/connection.h
   libmicrohttpd/src/daemon/connection_https.c
   libmicrohttpd/src/daemon/daemon.c
Log:
cleanup

Modified: libmicrohttpd/src/daemon/Makefile.am
===================================================================
--- libmicrohttpd/src/daemon/Makefile.am        2008-08-24 17:58:56 UTC (rev 
7593)
+++ libmicrohttpd/src/daemon/Makefile.am        2008-08-24 18:02:27 UTC (rev 
7594)
@@ -37,7 +37,7 @@
 
 if ENABLE_HTTPS
 SUBDIRS += https .
-libmicrohttpd_la_SOURCES += connection_https.c
+libmicrohttpd_la_SOURCES += connection_https.c connection_https.h
 libmicrohttpd_la_LIBADD = \
   https/lgl/liblgl.la \
   https/x509/libx509.la \

Modified: libmicrohttpd/src/daemon/connection.h
===================================================================
--- libmicrohttpd/src/daemon/connection.h       2008-08-24 17:58:56 UTC (rev 
7593)
+++ libmicrohttpd/src/daemon/connection.h       2008-08-24 18:02:27 UTC (rev 
7594)
@@ -42,8 +42,9 @@
 
 void MHD_set_http_calbacks (struct MHD_Connection *connection);
 
-#if HTTPS_SUPPORT
-void MHD_set_https_calbacks (struct MHD_Connection *connection);
-#endif
+int MHD_connection_handle_read (struct MHD_Connection *connection);
+int MHD_connection_handle_write (struct MHD_Connection *connection);
+int MHD_connection_handle_idle (struct MHD_Connection *connection);
 
+
 #endif

Modified: libmicrohttpd/src/daemon/connection_https.c
===================================================================
--- libmicrohttpd/src/daemon/connection_https.c 2008-08-24 17:58:56 UTC (rev 
7593)
+++ libmicrohttpd/src/daemon/connection_https.c 2008-08-24 18:02:27 UTC (rev 
7594)
@@ -39,11 +39,6 @@
 /* TODO #include rm "gnutls_errors.h" */
 #include "gnutls_errors.h"
 
-/* forward declarations used when setting secure connection callbacks */
-int MHD_connection_handle_read (struct MHD_Connection *connection);
-int MHD_connection_handle_write (struct MHD_Connection *connection);
-int MHD_connection_handle_idle (struct MHD_Connection *connection);
-
 /**
  * Obtain information about the given connection.
  *
@@ -175,7 +170,7 @@
  * @return MHD_YES if we should continue to process the
  *         connection (not dead yet), MHD_NO if it died
  */
-int
+static int
 MHD_tls_connection_handle_idle (struct MHD_Connection *connection)
 {
   unsigned int timeout;
@@ -231,7 +226,7 @@
  * @return MHD_YES if we should continue to process the
  *         connection (not dead yet), MHD_NO if it died
  */
-int
+static int
 MHD_tls_connection_handle_read (struct MHD_Connection *connection)
 {
   int ret;
@@ -374,7 +369,7 @@
  * @return MHD_connection_handle_write() if we should continue to
  *         process the connection (not dead yet), MHD_NO if it died
  */
-int
+static int
 MHD_tls_connection_handle_write (struct MHD_Connection *connection)
 {
   connection->last_activity = time (NULL);

Added: libmicrohttpd/src/daemon/connection_https.h
===================================================================
--- libmicrohttpd/src/daemon/connection_https.h                         (rev 0)
+++ libmicrohttpd/src/daemon/connection_https.h 2008-08-24 18:02:27 UTC (rev 
7594)
@@ -0,0 +1,35 @@
+/*
+     This file is part of libmicrohttpd
+     (C) 2008 Daniel Pittman and Christian Grothoff
+
+     This library is free software; you can redistribute it and/or
+     modify it under the terms of the GNU Lesser General Public
+     License as published by the Free Software Foundation; either
+     version 2.1 of the License, or (at your option) any later version.
+
+     This library is distributed in the hope that it will be useful,
+     but WITHOUT ANY WARRANTY; without even the implied warranty of
+     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+     Lesser General Public License for more details.
+
+     You should have received a copy of the GNU Lesser General Public
+     License along with this library; if not, write to the Free Software
+     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 
 USA
+*/
+
+/**
+ * @file connection_https.h
+ * @brief  Methods for managing connections
+ * @author Christian Grothoff
+ */
+
+#ifndef CONNECTION_HTTPS_H
+#define CONNECTION_HTTPS_H
+
+#include "internal.h"
+
+#if HTTPS_SUPPORT
+void MHD_set_https_calbacks (struct MHD_Connection *connection);
+#endif
+
+#endif

Modified: libmicrohttpd/src/daemon/daemon.c
===================================================================
--- libmicrohttpd/src/daemon/daemon.c   2008-08-24 17:58:56 UTC (rev 7593)
+++ libmicrohttpd/src/daemon/daemon.c   2008-08-24 18:02:27 UTC (rev 7594)
@@ -30,6 +30,7 @@
 #include "memorypool.h"
 
 #if HTTPS_SUPPORT
+#include "connection_https.h"
 #include "gnutls_int.h"
 #include "gnutls_global.h"
 #include "auth_anon.h"





reply via email to

[Prev in Thread] Current Thread [Next in Thread]