Defines | |
#define | SMD_HTTPD_DEFAULT_PORT 8021 |
#define | RE_IP "\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}" |
Functions | |
sul_get_time_now (void) | |
sul_get_local_ip (const char **ip, apr_pool_t *pool) | |
sul_get_nameinfo (char **name, const char *ip, apr_pool_t *pool) | |
sul_strtolower (apr_pool_t *pool, const char *str) | |
sul_string_makelower (char *str) | |
sul_socket_connect_timed (apr_socket_t *sock, apr_sockaddr_t *sa, apr_interval_time_t c_secs, apr_interval_time_t a_secs) | |
sul_parse_key (const char *nptr) | |
sul_str_replace (const char *src, const char *from, char to, apr_pool_t *pool) | |
sul_tokenize_string (apr_array_header_t **toks, const char *str, const char *delims, apr_pool_t *pool) | |
sul_join_strings (apr_array_header_t *strings, const char *sep, apr_size_t bgn, apr_pool_t *pool) | |
sul_pool_cleanup_free (void *arg) | |
sul_pcre_compile (pcre **re, const char *pattern, apr_pool_t *pool) | |
sul_pcre_match_simple (pcre *re, const char *str, apr_pool_t *pool) | |
sul_keys_array_contains (apr_array_header_t *arr, apr_int32_t key) |
|
A regular expression that will match formaly valid IP addresses, this will also match IP's that are special, so be careful. |
|
Default port number of the State HTTP daemon. It's pretty much assume that if state is running on a machine, then there is also a state http daemon running on this port on the machine also. |
|
Gets the IP address of the local machine.
|
|
Gets the DNS name lookup for a given IP address.
|
|
Gets a floating value representing the number of seconds since this function was first called.
|
|
|
|
Looks in an array of sul_key_t's for a given key.
|
|
Parses a key from a string.
|
|
|
|
|
|
APR cleanup function that just free's the arg using the standard libraries free function.
|
|
Attempts to do a timed socket connect that will time out after a given dureation elapses.
|
|
|
|
Gets a lower case instance of the given string.
|
|
Gets a lower case instance of the given string.
|
|
|