diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2014-10-12 19:33:08 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-11-04 00:35:43 -0500 |
commit | 1ea9a6fd72b66ec634446cbd2119641a5ed1e703 (patch) | |
tree | 5f8ab6a546218e39d4843e954452e79d428a10c4 /src/common/util.h | |
parent | f94e5f2e5212034cb8b2666716eeaa61e874065b (diff) | |
download | tor-1ea9a6fd72b66ec634446cbd2119641a5ed1e703.tar.gz tor-1ea9a6fd72b66ec634446cbd2119641a5ed1e703.zip |
Introducing helper function to validate DNS name strings.
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/util.h b/src/common/util.h index 61bb05f016..2634adc62b 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -227,6 +227,7 @@ const char *find_str_at_start_of_line(const char *haystack, const char *needle); int string_is_C_identifier(const char *string); int string_is_key_value(int severity, const char *string); +int string_is_valid_hostname(const char *string); int tor_mem_is_zero(const char *mem, size_t len); int tor_digest_is_zero(const char *digest); |