summaryrefslogtreecommitdiff
path: root/lib/netrc.h
diff options
context:
space:
mode:
authorJulien Chaffraix <julien.chaffraix@gmail.com>2011-02-07 22:12:37 -0800
committerJulien Chaffraix <julien.chaffraix@gmail.com>2011-02-10 07:38:48 -0800
commit39d0d787d20b29ed57b10477340c7d000041d31d (patch)
treeba17ec4ce43722fe1b7322f2c8af5a407baf4dfb /lib/netrc.h
parent3cffcba3d0cf78a2aa17197059f810f5a7ce05a5 (diff)
downloadcurl-39d0d787d20b29ed57b10477340c7d000041d31d.tar.gz
test1304: Added some unit tests for Curl_parsenetrc.
Moved some definitons into the header file so that we can reuse them.
Diffstat (limited to 'lib/netrc.h')
-rw-r--r--lib/netrc.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/netrc.h b/lib/netrc.h
index 5406d4c5d..4db764df2 100644
--- a/lib/netrc.h
+++ b/lib/netrc.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -21,6 +21,12 @@
* KIND, either express or implied.
*
***************************************************************************/
+
+/* Make sure we have room for at least this size: */
+#define LOGINSIZE 64
+#define PASSWORDSIZE 64
+
+/* returns -1 on failure, 0 if the host is found, 1 is the host isn't found */
int Curl_parsenetrc(const char *host,
char *login,
char *password,