netrc.h 807 B

1234567891011121314151617181920212223242526272829303132
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: netrc.h,v 1.11 2004/01/07 09:19:35 bagder Exp $
  4. /* ######################################################################
  5. netrc file parser - returns the login and password of a give host in
  6. a specified netrc-type file
  7. Originally written by Daniel Stenberg, <daniel@haxx.se>, et al. and
  8. placed into the Public Domain, do with it what you will.
  9. ##################################################################### */
  10. /*}}}*/
  11. #ifndef NETRC_H
  12. #define NETRC_H
  13. #include <string>
  14. #include <apt-pkg/macros.h>
  15. #ifndef APT_8_CLEANER_HEADERS
  16. #include <apt-pkg/strutl.h>
  17. #endif
  18. #define DOT_CHAR "."
  19. #define DIR_CHAR "/"
  20. class URI;
  21. void maybe_add_auth (URI &Uri, std::string NetRCFile);
  22. #endif