summaryrefslogtreecommitdiff
path: root/lib/curl_gethostname.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2011-09-25 23:58:47 +0200
committerDaniel Stenberg <daniel@haxx.se>2011-09-25 23:58:47 +0200
commit38b5744266f805f3dd6d9486ba323f99ab420d52 (patch)
treed3d78ef21669bd010d0abf00a616b482d11410fc /lib/curl_gethostname.h
parentbc28a35dbc9f449590b3003013715f40d0f0b895 (diff)
downloadcurl-38b5744266f805f3dd6d9486ba323f99ab420d52.tar.gz
HOSTNAME_MAX: Moved to curl_gethostname.h
Moved HOSTNAME_MAX #define into curl_gethostname.h rather than being locally defined in curl_gethostname.c, curl_ntlm_msgs.c and smtp.c.
Diffstat (limited to 'lib/curl_gethostname.h')
-rw-r--r--lib/curl_gethostname.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/curl_gethostname.h b/lib/curl_gethostname.h
index b8ecf88d6..48740f62a 100644
--- a/lib/curl_gethostname.h
+++ b/lib/curl_gethostname.h
@@ -22,6 +22,10 @@
*
***************************************************************************/
+/* Hostname buffer size */
+#define HOSTNAME_MAX 1024
+
+/* This returns the local machine's un-qualified hostname */
int Curl_gethostname(char *name, GETHOSTNAME_TYPE_ARG2 namelen);
#endif /* HEADER_CURL_GETHOSTNAME_H */