s/guint/gsize/ to match the definitions in soup-socket.c. #52167.
authorDan Winship <danw@src.gnome.org>
Mon, 15 Dec 2003 14:04:14 +0000 (14:04 +0000)
committerDan Winship <danw@src.gnome.org>
Mon, 15 Dec 2003 14:04:14 +0000 (14:04 +0000)
* libsoup/soup-socket.h (soup_socket_read, soup_socket_read_until,
soup_socket_write): s/guint/gsize/ to match the definitions in
soup-socket.c. #52167.

ChangeLog
libsoup/soup-socket.h

index 1e8f188..9b5a56e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-12-15  Dan Winship  <danw@ximian.com>
+
+       * libsoup/soup-socket.h (soup_socket_read, soup_socket_read_until,
+       soup_socket_write): s/guint/gsize/ to match the definitions in
+       soup-socket.c. #52167.
+
 2003-12-12  Rodrigo Moya <rodrigo@ximian.com>
 
        * libsoup/soup-soap-message.c: removed debugging of the messages here.
index 20c4fea..81b59b2 100644 (file)
@@ -89,20 +89,20 @@ typedef enum {
 
 SoupSocketIOStatus  soup_socket_read       (SoupSocket         *sock,
                                            gpointer            buffer,
-                                           guint               len,
-                                           guint              *nread);
+                                           gsize               len,
+                                           gsize              *nread);
 SoupSocketIOStatus  soup_socket_read_until (SoupSocket         *sock,
                                            gpointer            buffer,
-                                           guint               len,
+                                           gsize               len,
                                            gconstpointer       boundary,
-                                           guint               boundary_len,
-                                           guint              *nread,
+                                           gsize               boundary_len,
+                                           gsize              *nread,
                                            gboolean           *got_boundary);
 
 SoupSocketIOStatus  soup_socket_write      (SoupSocket         *sock,
                                            gconstpointer       buffer,
-                                           guint               len,
-                                           guint              *nwrote);
+                                           gsize               len,
+                                           gsize              *nwrote);
 
 
 #endif /* SOUP_SOCKET_H */