aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/utils.h
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-24 10:50:43 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-24 10:50:43 +0000
commit45d29914cc0673c8f88b745d4264688c9f7111bf (patch)
tree28e802469cd243de66f0a19f4f87502194184b71 /include/asterisk/utils.h
parent5d7fbc4b1e07573ab8e0d91ec21ed1705e630f1a (diff)
Reverting revision 10998 that was accidentaly committed to trunk. My apologies.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@10989 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/utils.h')
-rw-r--r--include/asterisk/utils.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/include/asterisk/utils.h b/include/asterisk/utils.h
index a61133163..416f362f6 100644
--- a/include/asterisk/utils.h
+++ b/include/asterisk/utils.h
@@ -142,15 +142,14 @@ struct ast_hostent {
struct hostent *ast_gethostbyname(const char *host, struct ast_hostent *hp);
-/*! \brief Produces MD5 hash based on input string */
+/* ast_md5_hash
+ \brief Produces MD5 hash based on input string */
void ast_md5_hash(char *output, char *input);
/* ast_sha1_hash
\brief Produces SHA1 hash based on input string */
void ast_sha1_hash(char *output, char *input);
-/*! \brief Encode string into Base 64 encoded string */
int ast_base64encode(char *dst, const unsigned char *src, int srclen, int max);
-/*! \brief Decode Base 64 encoded string */
int ast_base64decode(unsigned char *dst, const char *src, int max);
/*! ast_uri_encode
@@ -167,6 +166,7 @@ int ast_base64decode(unsigned char *dst, const char *src, int max);
\param buflen Size of output buffer
\param doreserved Convert reserved characters
*/
+
char *ast_uri_encode(const char *string, char *outbuf, int buflen, int doreserved);
/*! \brief Decode URI, URN, URL (overwrite string)
@@ -217,13 +217,14 @@ const char *ast_inet_ntoa(char *buf, int bufsiz, struct in_addr ia);
int ast_utils_init(void);
int ast_wait_for_input(int fd, int ms);
-/*! \brief Compares the source address and port of two sockaddr_in */
+/*! Compares the source address and port of two sockaddr_in */
static force_inline int inaddrcmp(const struct sockaddr_in *sin1, const struct sockaddr_in *sin2)
{
return ((sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
|| (sin1->sin_port != sin2->sin_port));
}
+#define AST_STACKSIZE 256 * 1024
#define ast_pthread_create(a,b,c,d) ast_pthread_create_stack(a,b,c,d,0)
int ast_pthread_create_stack(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *data, size_t stacksize);
@@ -239,10 +240,6 @@ char *ast_process_quotes_and_slashes(char *start, char find, char replace_with);
int getloadavg(double *list, int nelem);
#endif
-#define AST_STACKSIZE 256 * 1024
-#define AST_MAX_FILENAME_LEN 256 /*!< Maximum length of file names */
-#define AST_MAX_SHELL_COMMAND 512 /*!< Maximum length of shell commands */
-
#ifdef linux
#define ast_random random
#else