diff options
author | Dan Winship <danw@gnome.org> | 2013-06-29 13:10:23 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2013-06-29 13:10:23 -0400 |
commit | e06d243fadb351b63ba6e7734fd1a9b9fccf4d50 (patch) | |
tree | 3f0ea61c297dd8d08ed9193a106d9d4fc86ea027 /libsoup/soup-socket.h | |
parent | adcf9a68f56030dcbf3eab5b0717209392f45240 (diff) | |
download | libsoup-e06d243fadb351b63ba6e7734fd1a9b9fccf4d50.tar.gz |
Add/fix some annotations
Diffstat (limited to 'libsoup/soup-socket.h')
-rw-r--r-- | libsoup/soup-socket.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libsoup/soup-socket.h b/libsoup/soup-socket.h index ed405bdc..5c1264f9 100644 --- a/libsoup/soup-socket.h +++ b/libsoup/soup-socket.h @@ -26,11 +26,11 @@ typedef struct { GObjectClass parent_class; /* signals */ - void (*readable) (SoupSocket *); - void (*writable) (SoupSocket *); - void (*disconnected) (SoupSocket *); + void (*readable) (SoupSocket *sock); + void (*writable) (SoupSocket *sock); + void (*disconnected) (SoupSocket *sock); - void (*new_connection) (SoupSocket *, SoupSocket *); + void (*new_connection) (SoupSocket *listener, SoupSocket *new_sock); /* Padding for future expansion */ void (*_libsoup_reserved1) (void); |