netrc.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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. // FIXME: kill this export on the next ABI break - strongly doubt its in use anyway
  22. // outside of the apt itself, its really a internal interface
  23. APT_DEPRECATED int parsenetrc (char *host, char *login, char *password, char *filename);
  24. void maybe_add_auth (URI &Uri, std::string NetRCFile);
  25. #endif