1. 3b63f8f4 Move some files from base to base/memory. by [email protected] · 14 years ago
  2. 6d81b48 Propagate the remote socket address to URLRequest and to ViewHostMsg_FrameNavigate. by [email protected] · 14 years ago
  3. 685f6cb FTP: fix compatibility problems with MLSD by removing MLSD support. by [email protected] · 15 years ago
  4. 3bc505f FTP: a successful response to SIZE does not mean the resource is a file. by [email protected] · 15 years ago
  5. 4c98e44 FTP: fix navigation to ftp.symantec.com by [email protected] · 15 years ago
  6. ed7e970 FTP: make file downloads work when directory listing is restricted by [email protected] · 15 years ago
  7. 73c4532 Stop refcounting HostResolver. by [email protected] · 15 years ago
  8. ac10077 Revert 61034 - Refactor FTP unit tests. by [email protected] · 15 years ago
  9. 8c3d836 Refactor FTP unit tests. by [email protected] · 15 years ago
  10. be1ce6a7 Add #include utf_string_conversions.h to all files that use ASCIIToWide and by [email protected] · 15 years ago
  11. 13c8a09 Net: Convert username and password to string16. by [email protected] · 15 years ago
  12. b9b99f6c FTP: minor cleanups to the unit tests: by [email protected] · 15 years ago
  13. 7f04105 FTP: add more detailed error codes based on RFC 959. by [email protected] · 15 years ago
  14. cf697c7d Clean up FTP code a bit: by [email protected] · 15 years ago
  15. 39de121a FTP: change order of commands to improve compatibility by [email protected] · 15 years ago
  16. daf80734 FTP: Fix an infinite loop in a rare condition. by [email protected] · 15 years ago
  17. 96e272bc Pass nulls through test sockets. by [email protected] · 15 years ago
  18. 5a1d7ca Cleanup: Remove the implicit constructor for BoundNetLog that allowed passing NULL in place of a const BoundNetLog&. by [email protected] · 15 years ago
  19. 83210f3 Modify FTP to implement EPSV per RFC 2428. EPSV is an extended version by [email protected] · 15 years ago
  20. 99d28d2f Make sure to strip the brackets around IPv6 literals when resolving the hostname for FTP. by [email protected] · 15 years ago
  21. 630d1b0 Respect typecode in the FTP network transaction. by [email protected] · 15 years ago
  22. 23055d9 Add unit test to check for zero length dir in FTP PWD response. by [email protected] · 15 years ago
  23. e240297 Fix the problems with some FTP transactions taking a long time. by [email protected] · 15 years ago
  24. 520dc79d Add a test for correct FTP SIZE response handling when the file size by [email protected] · 15 years ago
  25. ac9eec6 Really connect to the same server in FTP network transaction. by [email protected] · 15 years ago
  26. 1944195 Improve error reporting for FTP passive connection failures. by [email protected] · 15 years ago
  27. 8d76a4a3b Pass the file size infomration from the FTP network transaction by [email protected] · 16 years ago
  28. 31a2bfe Add bounds checking to StaticSocketDataProvider, to make tests more reliable by [email protected] · 16 years ago
  29. 250e524 Implement support for MLSD FTP command in FtpNetworkTransaction. by [email protected] · 16 years ago
  30. a540c2d Minor cleanup: add a sys_addrinfo.h header that hides the platform-specific includes needed for struct addrinfo / struct sockaddr, since we were duplicating that #if #else logic in a growing number of places. by [email protected] · 16 years ago
  31. a6e6d3f7 Fix one source of flakiness of FTP tests. by [email protected] · 16 years ago
  32. 5ecc992a4 There was confusion in the mock socket classes due to by [email protected] · 16 years ago
  33. 071990cc Correctly handle FTP servers which unexpectedly close the control connection. by [email protected] · 16 years ago
  34. 3374f3c Fix compatibility problems with FileZilla FTP Server. by [email protected] · 16 years ago
  35. b1c7cc4 Correctly talk to VMS servers (translate UNIX paths to VMS and vice versa). by [email protected] · 16 years ago
  36. dd74b4d0 Unescape FTP URL paths, Firefox-compatible. by [email protected] · 16 years ago
  37. cca048bf Various cleanups FTP-related. by [email protected] · 16 years ago
  38. 99d6935 More correctly handle username and password in FtpNetworkTransaction. by [email protected] · 16 years ago
  39. fd22a6b Return ERR_FILE_NOT_FOUND from FtpNetworkTransaction when we can. by [email protected] · 16 years ago
  40. 843d4dd Cleanup: use OK instead of 0 when checking return code in ftp_network_transaction_unittest.cc by [email protected] · 16 years ago
  41. a1cea36 Don't trust server's PASV response that much in FtpNetworkTransaction. by [email protected] · 16 years ago
  42. d27ab3ee Fix transaction hang when downloading certain FTP files. by [email protected] · 16 years ago
  43. 684970b LoadLog is used as an output parameter, reorder it to the last parameter. by [email protected] · 16 years ago
  44. bf5ad68 Make FtpNetworkTransaction report its load state. by [email protected] · 16 years ago
  45. ec08bb2 Add a "LoadLog" parameter to transactions, hostresolver, clientsocketpool and proyxservice.This dependency comes from the parent URLRequest, and is used as a container for per-request profiling data.This change is strictly a no-op refactor -- the parameter is unused, and LoadLog does nothing.BUG=http://crbug.com/14478TEST=none -- just needs to compile and pass existing tests.DESIGN=<http://docs.google.com/Doc?id=dfhcnb2v_21gbtrcpr3&hl=en> by [email protected] · 16 years ago
  46. dfbba149 Make response code in FtpNetworkTransaction more precise. by [email protected] · 16 years ago
  47. 9edd6e1 Properly handle invalid server control responses. by [email protected] · 16 years ago
  48. b17a1a7f Correctly handle multiple control responses for RETR command. by [email protected] · 16 years ago
  49. c297219 Rework FTP control response parsing code and fix socket Write misuse. by [email protected] · 16 years ago
  50. b59ff37 Refactorings surrounding HostResolver: by [email protected] · 16 years ago
  51. dc5146b Correctly handle multiple control response lines in new FTP transaction by [email protected] · 16 years ago
  52. e0bb619 Make new FtpNetworkTransaction handle short reads correctly. by [email protected] · 16 years ago
  53. 94a0d3d9 Make net::HostResolver refcounted. by [email protected] · 16 years ago
  54. 0d63354 Reverting 19425. Review URL: http://codereview.chromium.org/147242 by [email protected] · 16 years ago
  55. 862a92ee Make net::HostResolver refcounted. by [email protected] · 16 years ago
  56. f7984fc6 Move socket related files from net/base to net/socket. by [email protected] · 16 years ago
  57. 86999474 Initialize IOBuffers in new FTP unit tests (issue detected by valgrind). by [email protected] · 16 years ago
  58. 69b43fe Add unit tests for new FTP network transaction. by [email protected] · 16 years ago