Commit df2217fc authored by Dafydd Harries's avatar Dafydd Harries

stun.h: make indentation consistent with other code

darcs-hash:20070107173701-c9803-c28f9857015956e58a10d1c70a9a630974b4bf06.gz
parent f871e4e5
...@@ -49,28 +49,28 @@ struct _StunMessage { ...@@ -49,28 +49,28 @@ struct _StunMessage {
}; };
StunAttribute * StunAttribute *
stun_attribute_mapped_address_new(guint32 ip_address, guint16 port); stun_attribute_mapped_address_new (guint32 ip_address, guint16 port);
void void
stun_attribute_free(StunAttribute *attr); stun_attribute_free (StunAttribute *attr);
guint guint
stun_attribute_pack(StunAttribute *attr, gchar **ret); stun_attribute_pack (StunAttribute *attr, gchar **ret);
gchar * gchar *
stun_attribute_dump(StunAttribute *attr); stun_attribute_dump (StunAttribute *attr);
StunAttribute * StunAttribute *
stun_attribute_unpack(guint length, const gchar *s); stun_attribute_unpack (guint length, const gchar *s);
StunMessage * StunMessage *
stun_message_new(guint type); stun_message_new (guint type);
StunMessage * StunMessage *
stun_message_binding_request_new(); stun_message_binding_request_new ();
void void
stun_message_free(StunMessage *msg); stun_message_free (StunMessage *msg);
guint guint
stun_message_pack(StunMessage *msg, gchar **packed); stun_message_pack (StunMessage *msg, gchar **packed);
gchar * gchar *
stun_message_dump (StunMessage *msg); stun_message_dump (StunMessage *msg);
StunMessage * StunMessage *
stun_message_unpack(guint length, gchar *s); stun_message_unpack (guint length, gchar *s);
#endif /* __STUN_H__ */ #endif /* __STUN_H__ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment