From: Dan Winship Date: Mon, 15 Dec 2003 14:04:14 +0000 (+0000) Subject: s/guint/gsize/ to match the definitions in soup-socket.c. #52167. X-Git-Tag: LIBSOUP_2_1_3~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=290d6b318c58beba562c1f987957cbcb116c4f6a;p=platform%2Fupstream%2Flibsoup.git s/guint/gsize/ to match the definitions in soup-socket.c. #52167. * 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. --- diff --git a/ChangeLog b/ChangeLog index 1e8f188..9b5a56e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-12-15 Dan Winship + + * 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 * libsoup/soup-soap-message.c: removed debugging of the messages here. diff --git a/libsoup/soup-socket.h b/libsoup/soup-socket.h index 20c4fea..81b59b2 100644 --- a/libsoup/soup-socket.h +++ b/libsoup/soup-socket.h @@ -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 */