revert 2184.1.3: forward declaration instead of headers
[ntk/apt.git] / apt-pkg / contrib / netrc.h
CommitLineData
592b7800
MV
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3// $Id: netrc.h,v 1.11 2004/01/07 09:19:35 bagder Exp $
4/* ######################################################################
5
6 netrc file parser - returns the login and password of a give host in
7 a specified netrc-type file
8
9 Originally written by Daniel Stenberg, <daniel@haxx.se>, et al. and
10 placed into the Public Domain, do with it what you will.
11
12 ##################################################################### */
13 /*}}}*/
14#ifndef NETRC_H
15#define NETRC_H
16
472ff00e 17#include <string>
592b7800 18
b9dadc24
DK
19#ifndef APT_8_CLEANER_HEADERS
20#include <apt-pkg/strutl.h>
21#endif
22
592b7800
MV
23#define DOT_CHAR "."
24#define DIR_CHAR "/"
25
472ff00e
DK
26class URI;
27
592b7800
MV
28// Assume: password[0]=0, host[0] != 0.
29// If login[0] = 0, search for login and password within a machine section
30// in the netrc.
31// If login[0] != 0, search for password within machine and login.
32int parsenetrc (char *host, char *login, char *password, char *filename);
33
8f3ba4e8 34void maybe_add_auth (URI &Uri, std::string NetRCFile);
592b7800 35#endif