]>
git.saurik.com Git - apt-legacy.git/blob - apt-pkg/contrib/netrc.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: netrc.h,v 1.11 2004/01/07 09:19:35 bagder Exp $
4 /* ######################################################################
6 netrc file parser - returns the login and password of a give host in
7 a specified netrc-type file
9 Originally written by Daniel Stenberg, <daniel@haxx.se>, et al. and
10 placed into the Public Domain, do with it what you will.
12 ##################################################################### */
17 #include <apt-pkg/strutl.h>
22 // Assume: password[0]=0, host[0] != 0.
23 // If login[0] = 0, search for login and password within a machine section
25 // If login[0] != 0, search for password within machine and login.
26 int parsenetrc (const char *host
, char *login
, char *password
, const char *filename
);
28 void maybe_add_auth (URI
&Uri
, string NetRCFile
);