url.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // This file is part of BOINC.
  2. // http://boinc.berkeley.edu
  3. // Copyright (C) 2009 University of California
  4. //
  5. // BOINC is free software; you can redistribute it and/or modify it
  6. // under the terms of the GNU Lesser General Public License
  7. // as published by the Free Software Foundation,
  8. // either version 3 of the License, or (at your option) any later version.
  9. //
  10. // BOINC is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. // See the GNU Lesser General Public License for more details.
  14. //
  15. // You should have received a copy of the GNU Lesser General Public License
  16. // along with BOINC. If not, see <http://www.gnu.org/licenses/>.
  17. #ifndef BOINC_URL_H
  18. #define BOINC_URL_H
  19. #include <string>
  20. #define URL_PROTOCOL_UNKNOWN 0
  21. #define URL_PROTOCOL_HTTP 1
  22. #define URL_PROTOCOL_HTTPS 2
  23. #define URL_PROTOCOL_SOCKS 3
  24. struct PARSED_URL {
  25. int protocol;
  26. char user[256];
  27. char passwd[256];
  28. char host[256];
  29. int port;
  30. char file[256];
  31. };
  32. extern void parse_url(const char* url, PARSED_URL&);
  33. extern void unescape_url(std::string& url);
  34. extern void unescape_url(char *url, int len);
  35. extern void escape_url(std::string& url);
  36. extern void escape_url(const char *in, char*out, int out_size);
  37. extern void escape_url_unsage(char *in, char *out);
  38. extern void escape_url_readable(char* in, char* out);
  39. extern void escape_project_url(char *in, char* out);
  40. extern bool valid_master_url(char*);
  41. extern void canonicalize_master_url(char *url, int len);
  42. extern void canonicalize_master_url(std::string&);
  43. extern bool is_https(const char*);
  44. extern bool is_https_transition(const char* ur1l, const char* url2);
  45. extern bool urls_match(const char* url1, const char* url2);
  46. #endif