X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=lib%2Fsilcsftp%2Fsftp_util.h;h=fef68ce4720419e5897a232bf9ac31cc4cfc6ccd;hp=f8e9c3054d81c719098689202d70e649298b6a44;hb=a818c5b5411bbc4436d1c5f011236985c96bb787;hpb=7910ce2a5c55211a4ea09a52832c6ed32c0b64fd diff --git a/lib/silcsftp/sftp_util.h b/lib/silcsftp/sftp_util.h index f8e9c305..fef68ce4 100644 --- a/lib/silcsftp/sftp_util.h +++ b/lib/silcsftp/sftp_util.h @@ -20,7 +20,7 @@ #ifndef SFTP_UTIL_H #define SFTP_UTIL_H -typedef uint32 SilcSFTPPacket; +typedef SilcUInt32 SilcSFTPPacket; /* SFTP packet types */ #define SILC_SFTP_INIT 1 @@ -65,12 +65,12 @@ typedef uint32 SilcSFTPPacket; to that buffer instead of allocating new one. If the new data cannot fit to `packet_buf' will be reallocated. */ SilcBuffer silc_sftp_packet_encode(SilcSFTPPacket packet, - SilcBuffer packet_buf, uint32 len, ...); + SilcBuffer packet_buf, SilcUInt32 len, ...); /* Same as silc_sftp_packet_encode but takes the variable argument list pointer as argument. */ SilcBuffer silc_sftp_packet_encode_vp(SilcSFTPPacket packet, - SilcBuffer packet_buf, uint32 len, + SilcBuffer packet_buf, SilcUInt32 len, va_list vp); /* Decodes the SFTP packet data `data' and return the SFTP packet type. @@ -78,7 +78,7 @@ SilcBuffer silc_sftp_packet_encode_vp(SilcSFTPPacket packet, NULL if error occurred during decoding. */ SilcSFTPPacket silc_sftp_packet_decode(SilcBuffer packet, unsigned char **payload, - uint32 *payload_len); + SilcUInt32 *payload_len); /* Encodes the SFTP attributes to a buffer and returns the allocated buffer. The caller must free the buffer. */ @@ -102,7 +102,7 @@ SilcBuffer silc_sftp_name_encode(SilcSFTPName name); /* Decodes a SilcSFTPName structure from the `buffer' that must include `count' many name, longname and attribute values. Returns the allocated structure or NULL on error. */ -SilcSFTPName silc_sftp_name_decode(uint32 count, SilcBuffer buffer); +SilcSFTPName silc_sftp_name_decode(SilcUInt32 count, SilcBuffer buffer); /* Frees the name context and its internals. */ void silc_sftp_name_free(SilcSFTPName name);