X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=lib%2Fsilcutil%2Fsilcsockconn.h;h=ea47d3da1e0b716847b88c90fdf404aea3e7a018;hp=ff52501646aa91628fa00b2925b43d77e1894f3b;hb=a818c5b5411bbc4436d1c5f011236985c96bb787;hpb=7910ce2a5c55211a4ea09a52832c6ed32c0b64fd diff --git a/lib/silcutil/silcsockconn.h b/lib/silcutil/silcsockconn.h index ff525016..ea47d3da 100644 --- a/lib/silcutil/silcsockconn.h +++ b/lib/silcutil/silcsockconn.h @@ -142,7 +142,7 @@ typedef enum { * Protocol object for the socket. Currently only one protocol can be * executing at a time for a particular socket. * - * uint32 flags + * SilcUInt32 flags * * Socket flags that indicate the status of the socket. This can * indicate several different status that can affect the use of the @@ -155,7 +155,7 @@ typedef enum { * * char *hostname * char *ip - * uint16 port + * SilcUInt16 port * * Resolved hostname, IP address and port of the connection who owns * this object. @@ -178,13 +178,13 @@ struct SilcSocketConnectionStruct { SilcSocketType type; void *user_data; SilcProtocol protocol; - uint32 flags; - uint8 sock_error; + SilcUInt32 flags; + SilcUInt8 sock_error; int users; char *hostname; char *ip; - uint16 port; + SilcUInt16 port; SilcBuffer inbuf; SilcBuffer outbuf; @@ -319,7 +319,7 @@ int silc_socket_write(SilcSocketConnection sock); * SYNOPSIS * * bool silc_socket_get_error(SilcSocketConnection sock, char *error, - * uint32 error_len); + * SilcUInt32 error_len); * * DESCRIPTION * @@ -329,7 +329,7 @@ int silc_socket_write(SilcSocketConnection sock); * ***/ bool silc_socket_get_error(SilcSocketConnection sock, char *error, - uint32 error_len); + SilcUInt32 error_len); /****f* silcutil/SilcSocketConnectionAPI/SilcSocketConnectionHBCb * @@ -353,7 +353,7 @@ typedef void (*SilcSocketConnectionHBCb)(SilcSocketConnection sock, * SYNOPSIS * * void silc_socket_set_heartbeat(SilcSocketConnection sock, - * uint32 heartbeat, + * SilcUInt32 heartbeat, * void *hb_context, * SilcSocketConnectionHBCb hb_callback, * SilcSchedule schedule); @@ -370,7 +370,7 @@ typedef void (*SilcSocketConnectionHBCb)(SilcSocketConnection sock, * ***/ void silc_socket_set_heartbeat(SilcSocketConnection sock, - uint32 heartbeat, + SilcUInt32 heartbeat, void *hb_context, SilcSocketConnectionHBCb hb_callback, SilcSchedule schedule);