aboutsummaryrefslogtreecommitdiffstats
path: root/netrc.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-01-07 00:22:14 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-01-07 00:22:14 +0000
commit6c847c7569654682cc3d14e4a14d3afbf207f63c (patch)
tree78a11914a922fc78161b3b2de59d7abe1d3e6f49 /netrc.h
parente289d5bfb3498033599a134e7dd09d0a56396865 (diff)
downloadfetchmail-6c847c7569654682cc3d14e4a14d3afbf207f63c.tar.gz
fetchmail-6c847c7569654682cc3d14e4a14d3afbf207f63c.tar.bz2
fetchmail-6c847c7569654682cc3d14e4a14d3afbf207f63c.zip
Initial revision
svn path=/trunk/; revision=714
Diffstat (limited to 'netrc.h')
-rw-r--r--netrc.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/netrc.h b/netrc.h
new file mode 100644
index 00000000..c74d6b3c
--- /dev/null
+++ b/netrc.h
@@ -0,0 +1,65 @@
+/* netrc.h -- declarations for netrc.c
+ Copyright (C) 1996, Free Software Foundation, Inc.
+ Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+#ifndef _NETRC_H_
+#define _NETRC_H_ 1
+
+# undef __BEGIN_DECLS
+# undef __END_DECLS
+#ifdef __cplusplus
+# define __BEGIN_DECLS extern "C" {
+# define __END_DECLS }
+#else
+# define __BEGIN_DECLS /* empty */
+# define __END_DECLS /* empty */
+#endif
+
+#undef __P
+#if defined (__STDC__) || defined (_AIX) || (defined (__mips) && defined (_SYSTYPE_SVR4)) || defined(WIN32) || defined(__cplusplus)
+# define __P(protos) protos
+#else
+# define __P(protos) ()
+#endif
+
+/* The structure used to return account information from the .netrc. */
+typedef struct _netrc_entry {
+ /* The exact host name given in the .netrc, NULL if default. */
+ char *host;
+
+ /* The name of the account. */
+ char *account;
+
+ /* Password for the account (NULL, if none). */
+ char *password;
+
+ /* Pointer to the next entry in the list. */
+ struct _netrc_entry *next;
+} netrc_entry;
+
+__BEGIN_DECLS
+/* Parse FILE as a .netrc file (as described in ftp(1)), and return a
+ list of entries. NULL is returned if the file could not be
+ parsed. */
+netrc_entry *parse_netrc __P((char *file));
+
+/* Return the netrc entry from LIST corresponding to HOST. NULL is
+ returned if no such entry exists. */
+netrc_entry *search_netrc __P((netrc_entry *list, char *host));
+__END_DECLS
+
+#endif /* _NETRC_H_ */