The string_len function should return unsigned int.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@209 7dcaeef0-15fb-0310-b436-a5af3365683c
Этот коммит содержится в:
родитель
55c7cc6839
Коммит
948c3f1bef
@ -185,7 +185,7 @@ const char *ssh_copyright(void);
|
|||||||
/* makestring returns a newly allocated string from a char * ptr */
|
/* makestring returns a newly allocated string from a char * ptr */
|
||||||
STRING *string_from_char(const char *what);
|
STRING *string_from_char(const char *what);
|
||||||
/* it returns the string len in host byte orders. str->size is big endian warning ! */
|
/* it returns the string len in host byte orders. str->size is big endian warning ! */
|
||||||
int string_len(STRING *str);
|
u32 string_len(STRING *str);
|
||||||
STRING *string_new(unsigned int size);
|
STRING *string_new(unsigned int size);
|
||||||
/* string_fill copies the data in the string. it does NOT check for boundary so allocate enough place with string_new */
|
/* string_fill copies the data in the string. it does NOT check for boundary so allocate enough place with string_new */
|
||||||
void string_fill(STRING *str, const void *data,int len);
|
void string_fill(STRING *str, const void *data,int len);
|
||||||
|
@ -63,7 +63,7 @@ STRING *string_from_char(const char *what){
|
|||||||
* \param str the input SSH string
|
* \param str the input SSH string
|
||||||
* \return size of the content of str
|
* \return size of the content of str
|
||||||
*/
|
*/
|
||||||
int string_len(STRING *str){
|
u32 string_len(STRING *str){
|
||||||
return ntohl(str->size);
|
return ntohl(str->size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user