X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fgnio.git;a=blobdiff_plain;f=gnio%2Fginetsocketaddress.c;h=040064ac8e4d02ab2fb59731bab9293c8cfcacea;hp=f6361623e243bcbc1a3251a851fd59a211bf192f;hb=48aa363fffb042f947130762acc7cd3c787b11d9;hpb=1c031c7647fc229c3be8fc40a4153aa47d3aea6b diff --git a/gnio/ginetsocketaddress.c b/gnio/ginetsocketaddress.c index f636162..040064a 100644 --- a/gnio/ginetsocketaddress.c +++ b/gnio/ginetsocketaddress.c @@ -67,7 +67,10 @@ g_inet_socket_address_dispose (GObject *object) } static void -g_inet_socket_address_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) +g_inet_socket_address_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec) { GInetSocketAddress *address = G_INET_SOCKET_ADDRESS (object); @@ -87,7 +90,10 @@ g_inet_socket_address_get_property (GObject *object, guint prop_id, GValue *valu } static void -g_inet_socket_address_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) +g_inet_socket_address_set_property (GObject *object, + guint prop_id, + const GValue *value, + GParamSpec *pspec) { GInetSocketAddress *address = G_INET_SOCKET_ADDRESS (object); @@ -124,7 +130,8 @@ g_inet_socket_address_native_size (GSocketAddress *address) } static gboolean -g_inet_socket_address_to_native (GSocketAddress *address, gpointer dest) +g_inet_socket_address_to_native (GSocketAddress *address, + gpointer dest) { GInetSocketAddress *addr; @@ -196,7 +203,8 @@ g_inet_socket_address_init (GInetSocketAddress *address) GInetSocketAddress * -g_inet_socket_address_new (GInetAddress *address, guint16 port) +g_inet_socket_address_new (GInetAddress *address, + guint16 port) { return G_INET_SOCKET_ADDRESS (g_object_new (G_TYPE_INET_SOCKET_ADDRESS, "address", address, "port", port, NULL)); }