X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=lib%2Fsilccore%2Fsilcpacket.h;h=b4f1a8e4a1a58fa39b080faa68fa12c7fdc2bf74;hp=87eee1408ae2562b4e36696c9af541b4449cdbc4;hb=a818c5b5411bbc4436d1c5f011236985c96bb787;hpb=7910ce2a5c55211a4ea09a52832c6ed32c0b64fd diff --git a/lib/silccore/silcpacket.h b/lib/silccore/silcpacket.h index 87eee140..b4f1a8e4 100644 --- a/lib/silccore/silcpacket.h +++ b/lib/silccore/silcpacket.h @@ -174,21 +174,21 @@ typedef unsigned char SilcPacketFlags; * Packet flags. Flags are defined above. * * unsigned char *src_id - * uint8 src_id_len + * SilcUInt8 src_id_len * unsigned char src_id_type * * Source ID, its length and type. On packet reception retuned ID's * are always the hash values of the ID's from the packet. * * unsigned char *dst_id; - * uint8 dst_id_len; + * SilcUInt8 dst_id_len; * unsigned char src_id_type; * * Destination ID, its length and type. On packet reception retuned * ID's are always the hash values of the ID's from the packet. * - * uint16 truelen - * uint8 padlen + * SilcUInt16 truelen + * SilcUInt8 padlen * * The true lenght of the packet and the padded length of the packet. * These may be set by the caller before calling any of the @@ -202,7 +202,7 @@ typedef unsigned char SilcPacketFlags; * calling silc_packet_context_dup and decreased by calling the * silc_packet_context_free. * - * uint32 sequence; + * SilcUInt32 sequence; * * Packet sequence number. * @@ -210,24 +210,24 @@ typedef unsigned char SilcPacketFlags; typedef struct { SilcBuffer buffer; - uint16 truelen; + SilcUInt16 truelen; SilcPacketFlags flags; SilcPacketType type; - uint8 padlen; + SilcUInt8 padlen; unsigned char *src_id; - uint8 src_id_len; - uint8 src_id_type; + SilcUInt8 src_id_len; + SilcUInt8 src_id_type; unsigned char *dst_id; - uint8 dst_id_len; - uint8 dst_id_type; + SilcUInt8 dst_id_len; + SilcUInt8 dst_id_type; int users; bool long_pad; /* Set to TRUE to use maximum padding in packet (up to 256 bytes). */ - uint32 sequence; + SilcUInt32 sequence; } SilcPacketContext; /****s* silccore/SilcPacketAPI/SilcPacketParserContext @@ -389,7 +389,7 @@ int silc_packet_send(SilcSocketConnection sock, bool force_send); * SYNOPSIS * * void silc_packet_encrypt(SilcCipher cipher, SilcHmac hmac, - * SilcBuffer buffer, uint32 len); + * SilcBuffer buffer, SilcUInt32 len); * * DESCRIPTION * @@ -401,8 +401,8 @@ int silc_packet_send(SilcSocketConnection sock, bool force_send); * cannot be used. * ***/ -void silc_packet_encrypt(SilcCipher cipher, SilcHmac hmac, uint32 sequence, - SilcBuffer buffer, uint32 len); +void silc_packet_encrypt(SilcCipher cipher, SilcHmac hmac, SilcUInt32 sequence, + SilcBuffer buffer, SilcUInt32 len); /****f* silccore/SilcPacketAPI/silc_packet_assemble * @@ -464,9 +464,9 @@ void silc_packet_assemble(SilcPacketContext *ctx, SilcCipher cipher); * SYNOPSIS * * void silc_packet_send_prepare(SilcSocketConnection sock, - * uint32 header_len, - * uint32 padlen, - * uint32 data_len); + * SilcUInt32 header_len, + * SilcUInt32 padlen, + * SilcUInt32 data_len); * * DESCRIPTION * @@ -477,9 +477,9 @@ void silc_packet_assemble(SilcPacketContext *ctx, SilcCipher cipher); * ***/ void silc_packet_send_prepare(SilcSocketConnection sock, - uint32 header_len, - uint32 padlen, - uint32 data_len); + SilcUInt32 header_len, + SilcUInt32 padlen, + SilcUInt32 data_len); /****f* silccore/SilcPacketAPI/silc_packet_receive * @@ -528,7 +528,7 @@ int silc_packet_receive(SilcSocketConnection sock); bool silc_packet_receive_process(SilcSocketConnection sock, bool local_is_router, SilcCipher cipher, SilcHmac hmac, - uint32 sequence, + SilcUInt32 sequence, SilcPacketParserCallback parser, void *parser_context);