/* Icecast * * This program is distributed under the GNU General Public License, version 2. * A copy of this license is included with this source. * * Copyright 2000-2004, Jack Moffitt , * oddsock , * Karl Heyes * and others (see AUTHORS for details). */ #ifndef __UTIL_H__ #define __UTIL_H__ #define XSLT_CONTENT 1 #define HTML_CONTENT 2 #define READ_ENTIRE_HEADER 1 #define READ_LINE 0 #define MAX_LINE_LEN 512 int util_timed_wait_for_fd(sock_t fd, int timeout); int util_read_header(sock_t sock, char *buff, unsigned long len, int entire); int util_check_valid_extension(const char *uri); char *util_get_extension(const char *path); char *util_get_path_from_uri(char *uri); char *util_get_path_from_normalised_uri(const char *uri); char *util_normalise_uri(const char *uri); char *util_base64_encode(const char *data); char *util_base64_decode(const char *input); char *util_bin_to_hex(unsigned char *data, int len); char *util_url_unescape(const char *src); char *util_url_escape(const char *src); /* String dictionary type, without support for NULL keys, or multiple * instances of the same key */ typedef struct _util_dict { char *key; char *val; struct _util_dict *next; } util_dict; util_dict *util_dict_new(void); void util_dict_free(util_dict *dict); /* dict, key must not be NULL. */ int util_dict_set(util_dict *dict, const char *key, const char *val); const char *util_dict_get(util_dict *dict, const char *key); char *util_dict_urlencode(util_dict *dict, char delim); #ifndef HAVE_LOCALTIME_R struct tm *localtime_r (const time_t *timep, struct tm *result); #endif char *util_conv_string (const char *string, const char *in_charset, const char *out_charset); int get_line(FILE *file, char *buf, size_t siz); #endif /* __UTIL_H__ */