X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilcutil%2Fsilcutil.h;h=0b8a4250e77824333c7fba575461cc07e42a6dc5;hb=12776f3d5893732a1e92052e6da226764018303b;hp=300c0a43ee8a22c8b5ef926da50a5d7cf6daf74b;hpb=341fcb5192bf89436681566074087a4b25bafadb;p=runtime.git diff --git a/lib/silcutil/silcutil.h b/lib/silcutil/silcutil.h index 300c0a43..0b8a4250 100644 --- a/lib/silcutil/silcutil.h +++ b/lib/silcutil/silcutil.h @@ -4,7 +4,7 @@ Author: Pekka Riikonen - Copyright (C) 1997 - 2007 Pekka Riikonen + Copyright (C) 1997 - 2008 Pekka Riikonen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,7 +17,7 @@ */ -/****h* silcutil/SILC Utilities +/****h* silcutil/Misc Utilities * * DESCRIPTION * @@ -28,7 +28,7 @@ #ifndef SILCUTIL_H #define SILCUTIL_H -/****f* silcutil/SilcUtilAPI/silc_gets +/****f* silcutil/silc_gets * * SYNOPSIS * @@ -44,22 +44,7 @@ ***/ int silc_gets(char *dest, int destlen, const char *src, int srclen, int begin); -/****f* silcutil/SilcUtilAPI/silc_check_line - * - * SYNOPSIS - * - * int silc_check_line(char *buf); - * - * DESCRIPTION - * - * Checks line for illegal characters. Return -1 when illegal character - * were found. This is used to check for bad lines when reading data from - * for example a configuration file. - * - ***/ -int silc_check_line(char *buf); - -/****f* silcutil/SilcUtilAPI/silc_to_upper +/****f* silcutil/silc_to_upper * * SYNOPSIS * @@ -73,7 +58,7 @@ int silc_check_line(char *buf); ***/ SilcBool silc_to_upper(const char *string, char *dest, SilcUInt32 dest_size); -/****f* silcutil/SilcUtilAPI/silc_to_lower +/****f* silcutil/silc_to_lower * * SYNOPSIS * @@ -87,7 +72,7 @@ SilcBool silc_to_upper(const char *string, char *dest, SilcUInt32 dest_size); ***/ SilcBool silc_to_lower(const char *string, char *dest, SilcUInt32 dest_size); -/****f* silcutil/SilcUtilAPI/silc_parse_userfqdn +/****f* silcutil/silc_parse_userfqdn * * SYNOPSIS * @@ -106,7 +91,7 @@ int silc_parse_userfqdn(const char *string, char *user, SilcUInt32 user_size, char *fqdn, SilcUInt32 fqdn_size); -/****f* silcutil/SilcUtilAPI/silc_parse_command_line +/****f* silcutil/silc_parse_command_line * * SYNOPSIS * @@ -132,7 +117,7 @@ void silc_parse_command_line(unsigned char *buffer, SilcUInt32 *parsed_num, SilcUInt32 max_args); -/****f* silcutil/SilcUtilAPI/silc_format +/****f* silcutil/silc_format * * SYNOPSIS * @@ -146,194 +131,7 @@ void silc_parse_command_line(unsigned char *buffer, ***/ char *silc_format(char *fmt, ...); -/****f* silcutil/SilcUtilAPI/silc_hash_string - * - * SYNOPSIS - * - * SilcUInt32 silc_hash_string(void *key, void *user_context); - * - * DESCRIPTION - * - * Basic has function to hash strings. May be used with the SilcHashTable. - * Note that this lowers the characters of the string (with tolower()) so - * this is used usually with nicknames, channel and server names to provide - * case insensitive keys. - * - ***/ -SilcUInt32 silc_hash_string(void *key, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_utf8_string - * - * SYNOPSIS - * - * SilcUInt32 silc_hash_utf8_string(void *key, void *user_context); - * - * DESCRIPTION - * - * Basic has function to hash UTF-8 strings. May be used with the - * SilcHashTable. Used with identifier strings. The key is - * expected to be casefolded. - * - ***/ -SilcUInt32 silc_hash_utf8_string(void *key, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_uint - * - * SYNOPSIS - * - * SilcUInt32 silc_hash_uint(void *key, void *user_context); - * - * DESCRIPTION - * - * Basic hash function to hash integers. May be used with the SilcHashTable. - * - ***/ -SilcUInt32 silc_hash_uint(void *key, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_ptr - * - * SYNOPSIS - * - * SilcUInt32 silc_hash_ptr(void *key, void *user_context); - * - * DESCRIPTION - * - * Basic hash funtion to hash pointers. May be used with the SilcHashTable. - * - ***/ -SilcUInt32 silc_hash_ptr(void *key, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_id - * - * SYNOPSIS - * - * SilcUInt32 silc_hash_id(void *key, void *user_context); - * - * DESCRIPTION - * - * Hash a ID. The `user_context' is the ID type. - * - ***/ -SilcUInt32 silc_hash_id(void *key, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_client_id_hash - * - * SYNOPSIS - * - * SilcUInt32 silc_hash_client_id_hash(void *key, void *user_context) - * - * DESCRIPTION - * - * Hash Client ID's hash. - * - ***/ -SilcUInt32 silc_hash_client_id_hash(void *key, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_data - * - * SYNOPSIS - * - * SilcUInt32 silc_hash_data(void *key, void *user_context); - * - * DESCRIPTION - * - * Hash binary data. The `user_context' is the data length. - * - ***/ -SilcUInt32 silc_hash_data(void *key, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_string_compare - * - * SYNOPSIS - * - * SilcBool silc_hash_string_compare(void *key1, void *key2, - * void *user_context); - * - * DESCRIPTION - * - * Compares two strings. It may be used as SilcHashTable comparison - * function. - * - ***/ -SilcBool silc_hash_string_compare(void *key1, void *key2, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_id_compare - * - * SYNOPSIS - * - * SilcBool silc_hash_id_compare(void *key1, void *key2, - * void *user_context); - * - * DESCRIPTION - * - * Compares two ID's. May be used as SilcHashTable comparison function. - * The Client ID's compares only the hash of the Client ID not any other - * part of the Client ID. Other ID's are fully compared. - * - ***/ -SilcBool silc_hash_id_compare(void *key1, void *key2, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_id_compare_full - * - * SYNOPSIS - * - * SilcBool silc_hash_id_compare_full(void *key1, void *key2, - * void *user_context) - * - * DESCRIPTION - * - * Compares two ID's. May be used as SilcHashTable comparison function. - * To compare full ID's instead of only partial, like the - * silc_hash_id_compare does, use this function. - * - ***/ -SilcBool silc_hash_id_compare_full(void *key1, void *key2, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_client_id_compare - * - * SYNOPSIS - * - * SilcBool silc_hash_client_id_compare(void *key1, void *key2, - * void *user_context); - * - * DESCRIPTION - * - * Compare two Client ID's entirely and not just the hash from the ID. - * - ***/ -SilcBool silc_hash_client_id_compare(void *key1, void *key2, - void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_data_compare - * - * SYNOPSIS - * - * SilcBool silc_hash_data_compare(void *key1, void *key2, - * void *user_context); - * - * DESCRIPTION - * - * Compares binary data. May be used as SilcHashTable comparison function. - * - ***/ -SilcBool silc_hash_data_compare(void *key1, void *key2, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_hash_utf8_compare - * - * SYNOPSIS - * - * SilcBool silc_hash_utf8_compare(void *key1, void *key2, - * void *user_context); - * - * DESCRIPTION - * - * Compares UTF-8 strings. Casefolded and NULL terminated strings are - * expected. May be used as SilcHashTable comparison function. - * - ***/ -SilcBool silc_hash_utf8_compare(void *key1, void *key2, void *user_context); - -/****f* silcutil/SilcUtilAPI/silc_fingerprint +/****f* silcutil/silc_fingerprint * * SYNOPSIS * @@ -342,12 +140,14 @@ SilcBool silc_hash_utf8_compare(void *key1, void *key2, void *user_context); * DESCRIPTION * * Return a textual representation of the fingerprint in *data, the - * caller must free the returned string. + * caller must free the returned string. Returns NULL on error. If + * the `data_len' is longer than 255 bytes, only the first 255 bytes are + * used to create the fingerprint. * ***/ char *silc_fingerprint(const unsigned char *data, SilcUInt32 data_len); -/****f* silcutil/SilcUtilAPI/silc_string_is_ascii +/****f* silcutil/silc_string_is_ascii * * SYNOPSIS * @@ -361,7 +161,7 @@ char *silc_fingerprint(const unsigned char *data, SilcUInt32 data_len); ***/ SilcBool silc_string_is_ascii(const unsigned char *data, SilcUInt32 data_len); -/****f* silcutil/SilcUtilAPI/silc_get_input +/****f* silcutil/silc_get_input * * SYNOPSIS * @@ -376,7 +176,7 @@ char *silc_get_input(const char *prompt, SilcBool echo_off); /* System dependant prototypes */ -/****f* silcutil/SilcUtilAPI/silc_get_username +/****f* silcutil/silc_get_username * * SYNOPSIS * @@ -393,7 +193,7 @@ char *silc_get_input(const char *prompt, SilcBool echo_off); ***/ char *silc_get_username(); -/****f* silcutil/SilcUtilAPI/silc_get_real_name +/****f* silcutil/silc_get_real_name * * SYNOPSIS * @@ -409,7 +209,7 @@ char *silc_get_username(); ***/ char *silc_get_real_name(); -/****f* silcutil/SilcUtilAPI/silc_va_copy +/****f* silcutil/silc_va_copy * * SYNOPSIS * @@ -423,17 +223,9 @@ char *silc_get_real_name(); * each copied list. * ***/ -#if defined(HAVE_VA_COPY) -#define silc_va_copy(dest, src) va_copy(dest, src); -#elif defined(HAVE___VA_COPY) -#define silc_va_copy(dest, src) __va_copy(dest, src); -#elif defined(SILC_VA_COPY_ARRAY) -#define silc_va_copy(dest, src) memmove(dest, src, sizeof(va_list)); -#else -#define silc_va_copy(dest, src) dest = src; -#endif +#define silc_va_copy(dest, src) __SILC_VA_COPY(dest, src) -/****f* silcutil/SilcUtilAPI/silc_hexdump +/****f* silcutil/silc_hexdump * * SYNOPSIS * @@ -449,7 +241,7 @@ char *silc_get_real_name(); void silc_hexdump(const unsigned char *data, SilcUInt32 data_len, FILE *output); -/****f* silcutil/SilcUtilAPI/silc_hex2data +/****f* silcutil/silc_hex2data * * SYNOPSIS * @@ -465,7 +257,7 @@ void silc_hexdump(const unsigned char *data, SilcUInt32 data_len, SilcBool silc_hex2data(const char *hex, unsigned char *data, SilcUInt32 data_size, SilcUInt32 *ret_data_len); -/****f* silcutil/SilcUtilAPI/silc_data2hex +/****f* silcutil/silc_data2hex * * SYNOPSIS * @@ -481,4 +273,18 @@ SilcBool silc_hex2data(const char *hex, unsigned char *data, SilcBool silc_data2hex(const unsigned char *data, SilcUInt32 data_len, char *hex, SilcUInt32 hex_size); +/****f* silcutil/silc_get_num_cpu + * + * SYNOPSIS + * + * int silc_get_num_cpu(void); + * + * DESCRIPTION + * + * Returns the number of CPU cores in the current machine. Returns 0 + * if the routine could not determine the number of cores. + * + ***/ +int silc_get_num_cpu(void); + #endif /* !SILCUTIL_H */