gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r12107 - gnunet/src/include


From: gnunet
Subject: [GNUnet-SVN] r12107 - gnunet/src/include
Date: Fri, 2 Jul 2010 15:01:23 +0200

Author: nevans
Date: 2010-07-02 15:01:23 +0200 (Fri, 02 Jul 2010)
New Revision: 12107

Modified:
   gnunet/src/include/gnunet_connection_lib.h
   gnunet/src/include/gnunet_server_lib.h
Log:
remove max buffer size from headers

Modified: gnunet/src/include/gnunet_connection_lib.h
===================================================================
--- gnunet/src/include/gnunet_connection_lib.h  2010-07-02 13:00:36 UTC (rev 
12106)
+++ gnunet/src/include/gnunet_connection_lib.h  2010-07-02 13:01:23 UTC (rev 
12107)
@@ -101,8 +101,6 @@
  *
  * @param sched scheduler to use
  * @param osSocket existing socket to box
- * @param maxbuf maximum write buffer size for the socket (use
- *        0 for sockets that need no write buffers, such as listen sockets)
  * @return the boxed socket handle
  */
 struct GNUNET_CONNECTION_Handle
@@ -111,7 +109,7 @@
                                                    *sched,
                                                    struct
                                                    GNUNET_NETWORK_Handle
-                                                   *osSocket, size_t maxbuf);
+                                                   *osSocket);
 
 
 /**
@@ -122,8 +120,6 @@
  * @param access function to use to check if access is allowed
  * @param access_cls closure for access
  * @param lsock listen socket
- * @param maxbuf maximum write buffer size for the socket (use
- *        0 for sockets that need no write buffers, such as listen sockets)
  * @return the socket handle, NULL on error (for example, access refused)
  */
 struct GNUNET_CONNECTION_Handle
@@ -134,7 +130,7 @@
                                                  access, void *access_cls,
                                                  struct
                                                  GNUNET_NETWORK_Handle
-                                                 *lsock, size_t maxbuf);
+                                                 *lsock);
 
 
 /**
@@ -146,16 +142,13 @@
  * @param cfg configuration to use
  * @param hostname name of the host to connect to
  * @param port port to connect to
- * @param maxbuf maximum write buffer size for the socket (use
- *        0 for sockets that need no write buffers, such as listen sockets)
  * @return the socket handle
  */
 struct GNUNET_CONNECTION_Handle
   *GNUNET_CONNECTION_create_from_connect (struct GNUNET_SCHEDULER_Handle 
*sched,
                                          const struct 
GNUNET_CONFIGURATION_Handle *cfg,
                                          const char *hostname,
-                                         uint16_t port,
-                                         size_t maxbuf);
+                                         uint16_t port);
 
 
 /**
@@ -165,17 +158,14 @@
  *
  * @param sched scheduler to use
  * @param cfg configuration to use
- * @param unixpath path to connect to
- * @param maxbuf maximum write buffer size for the socket (use
- *        0 for sockets that need no write buffers, such as listen sockets)
+ * @param unixpath path to connect to)
  * @return the socket handle, NULL on systems without UNIX support
  */
 struct GNUNET_CONNECTION_Handle *
 GNUNET_CONNECTION_create_from_connect_to_unixpath (struct 
GNUNET_SCHEDULER_Handle *sched,
                                                   const struct
                                                   GNUNET_CONFIGURATION_Handle 
*cfg,
-                                                  const char *unixpath,
-                                                  size_t maxbuf);
+                                                  const char *unixpath);
 
 
 
@@ -189,8 +179,6 @@
  * @param af_family address family to use
  * @param serv_addr server address
  * @param addrlen length of server address
- * @param maxbuf maximum write buffer size for the socket (use
- *        0 for sockets that need no write buffers, such as listen sockets)
  * @return the socket handle
  */
 struct GNUNET_CONNECTION_Handle
@@ -199,8 +187,7 @@
                                                    *sched, int af_family,
                                                    const struct sockaddr
                                                    *serv_addr,
-                                                   socklen_t addrlen,
-                                                   size_t maxbuf);
+                                                   socklen_t addrlen);
 
 /**
  * Check if socket is valid (no fatal errors have happened so far).
@@ -306,7 +293,7 @@
  * are free in the transmission buffer.  May call the notify
  * method immediately if enough space is available.  Note that
  * this function will abort if "size" is greater than
- * "maxbuf" (as specified when the socket handle was created).
+ * GNUNET_SERVER_MAX_MESSAGE_SIZE.
  *
  * Note that "notify" will be called either when enough
  * buffer space is available OR when the socket is destroyed.
@@ -332,13 +319,13 @@
  */
 struct GNUNET_CONNECTION_TransmitHandle
   *GNUNET_CONNECTION_notify_transmit_ready (struct
-                                                    GNUNET_CONNECTION_Handle
-                                                    *sock, size_t size,
-                                                    struct
-                                                    GNUNET_TIME_Relative
-                                                    timeout,
-                                                    
GNUNET_CONNECTION_TransmitReadyNotify
-                                                    notify, void *notify_cls);
+                                            GNUNET_CONNECTION_Handle
+                                            *sock, size_t size,
+                                            struct
+                                            GNUNET_TIME_Relative
+                                            timeout,
+                                            
GNUNET_CONNECTION_TransmitReadyNotify
+                                            notify, void *notify_cls);
 
 
 /**

Modified: gnunet/src/include/gnunet_server_lib.h
===================================================================
--- gnunet/src/include/gnunet_server_lib.h      2010-07-02 13:00:36 UTC (rev 
12106)
+++ gnunet/src/include/gnunet_server_lib.h      2010-07-02 13:01:23 UTC (rev 
12107)
@@ -119,7 +119,6 @@
  * @param access function for access control
  * @param access_cls closure for access
  * @param lsocks NULL-terminated array of listen sockets
- * @param maxbuf maximum write buffer size for accepted sockets
  * @param idle_timeout after how long should we timeout idle connections?
  * @param require_found if YES, connections sending messages of unknown type
  *        will be closed
@@ -130,7 +129,6 @@
 GNUNET_SERVER_create_with_sockets (struct GNUNET_SCHEDULER_Handle *sched,
                                   GNUNET_CONNECTION_AccessCheck access, void 
*access_cls,
                                   struct GNUNET_NETWORK_Handle **lsocks,
-                                  size_t maxbuf,
                                   struct GNUNET_TIME_Relative
                                   idle_timeout,
                                   int require_found);
@@ -143,7 +141,6 @@
  * @param access_cls closure for access
  * @param serverAddr address toes listen on (including port), NULL terminated 
array
  * @param socklen lengths of respective serverAddr 
- * @param maxbuf maximum write buffer size for accepted sockets
  * @param idle_timeout after how long should we timeout idle connections?
  * @param require_found if YES, connections sending messages of unknown type
  *        will be closed
@@ -157,7 +154,6 @@
                                                    access, void *access_cls,
                                                   struct sockaddr 
*const*serverAddr,
                                                    const socklen_t *socklen,
-                                                   size_t maxbuf,
                                                    struct GNUNET_TIME_Relative
                                                    idle_timeout,
                                                    int require_found);
@@ -546,15 +542,12 @@
 /**
  * Create a message stream tokenizer.
  *
- * @param maxbuf maximum message size to support (typically
- *    GNUNET_SERVER_MAX_MESSAGE_SIZE)
  * @param cb function to call on completed messages
  * @param cb_cls closure for cb
  * @return handle to tokenizer
  */
 struct GNUNET_SERVER_MessageStreamTokenizer *
-GNUNET_SERVER_mst_create (size_t maxbuf,
-                         GNUNET_SERVER_MessageTokenizerCallback cb,
+GNUNET_SERVER_mst_create (GNUNET_SERVER_MessageTokenizerCallback cb,
                          void *cb_cls);
 
 




reply via email to

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