1. 581df61 Revert "Reland "Clean up libjingle API dependencies."" by Patrik Höglund · 7 years ago
  2. 5117b04 Reland "Clean up libjingle API dependencies." by Patrik Höglund · 7 years ago
  3. 7bcfc3b Revert "Clean up libjingle API dependencies." by Patrik Höglund · 7 years ago
  4. 57fb315 Clean up libjingle API dependencies. by Patrik Höglund · 7 years ago
  5. 92ea95e Fixing WebRTC after moving from src/webrtc to src/ by Mirko Bonadei · 7 years ago
  6. bb54720 Moving src/webrtc into src/. by Mirko Bonadei · 7 years ago[Renamed from webrtc/rtc_base/network.h]
  7. 3427f53 Relanding: Move "max IPv6 networks" logic to BasicPortAllocator, and fix sorting. by deadbeef · 7 years ago
  8. 817c8af Revert of Move "max IPv6 networks" logic to BasicPortAllocator, and fix sorting. (patchset #2 id:20001 of https://codereview.webrtc.org/2983213002/ ) by deadbeef · 7 years ago
  9. ad95614 Move "max IPv6 networks" logic to BasicPortAllocator, and fix sorting. by deadbeef · 7 years ago
  10. be7e9c6 Reland of Make "set_ignore_non_default_routes" actually use its argument. (patchset #1 id:1 of https://codereview.webrtc.org/2974193002/ ) by deadbeef · 7 years ago
  11. 1e50748 Revert of Make "set_ignore_non_default_routes" actually use its argument. (patchset #1 id:1 of https://codereview.webrtc.org/2974873002/ ) by sprang · 7 years ago
  12. 05314c3 Make "set_ignore_non_default_routes" actually use its argument. by deadbeef · 7 years ago
  13. e96c45b Reland "Update includes for webrtc/{base => rtc_base} rename (3/3)" by kjellander · 7 years ago
  14. 0072511 Revert "Update includes for webrtc/{base => rtc_base} rename (3/3)" by Henrik Kjellander · 7 years ago
  15. f1c5ebf Update includes for webrtc/{base => rtc_base} rename (3/3) by kjellander · 7 years ago
  16. c036276 Reland "Move webrtc/{base => rtc_base}" (https://codereview.webrtc.org/2877023002) by Henrik Kjellander · 7 years ago[Renamed (98%) from webrtc/base/network.h]
  17. ec78f1c Revert "Move webrtc/{base => rtc_base}" (https://codereview.webrtc.org/2877023002) by Henrik Kjellander · 7 years ago
  18. 6776518 Move webrtc/{base => rtc_base} by Henrik Kjellander · 7 years ago
  19. 1ee2125 Adding PortAllocator option to support cases where sockets can't be bound. by deadbeef · 7 years ago
  20. c7c26a0 Reland of place basictypes.h with stdint.h for int_t types. (patchset #1 id:1 of https://codereview.webrtc.org/2603203003/ ) by pbos · 8 years ago
  21. 7eb0e23 Revert of Replace basictypes.h with stdint.h for int_t types. (patchset #1 id:1 of https://codereview.webrtc.org/2604043002/ ) by pbos · 8 years ago
  22. 7fd1a75 Replace basictypes.h with stdint.h for int_t types. by pbos · 8 years ago
  23. e97389c If network enumeration fails, try binding to the "ANY" address. by deadbeef · 8 years ago
  24. 5622c5e If continual gathering is enabled, by Honghai Zhang · 8 years ago
  25. f8e6577 Add virtual Initialize methods to PortAllocator and NetworkManager. by Taylor Brandstetter · 8 years ago
  26. ba8d433 Revert of Add virtual Initialize methods to PortAllocator and NetworkManager. (patchset #4 id:60001 of https://codereview.webrtc.org/2097653002/ ) by deadbeef · 8 years ago
  27. a6bdb09 Add virtual Initialize methods to PortAllocator and NetworkManager. by Taylor Brandstetter · 8 years ago
  28. 351d77b Update the type and cost of existing networks by Honghai Zhang · 8 years ago
  29. 555604a Replace scoped_ptr with unique_ptr in webrtc/base/ by jbauch · 8 years ago
  30. af83fe6 GetDefaultLocalAddress should return the bestIP by honghaiz · 8 years ago
  31. a0c44ea Add 16-bit network id to the candidate signaling. by honghaiz · 8 years ago
  32. e2af9ef Keep on sending stun binding requests on zero-cost networks. by honghaiz · 8 years ago
  33. e3c6c82 When doing continual gathering, remove the local ports when a corresponding network is dropped. by honghaiz · 8 years ago
  34. a7ad7c3 Get the adapter type information from Android OS. by honghaiz · 8 years ago
  35. 0c7e9f5 Removing webrtc::PortAllocatorFactoryInterface. by Taylor Brandstetter · 9 years ago
  36. 9faf154 Reland 1531763006 by Guo-wei Shieh · 9 years ago
  37. a6c86b2 Revert "Enable IPv6 temporary address filtering on iOS." by Guo-wei Shieh · 9 years ago
  38. 29488c2 Enable IPv6 temporary address filtering on iOS. by guoweis · 9 years ago
  39. db8cf50 Fix two problems in network.cc: by honghaiz · 9 years ago
  40. e03cab9 When running this code in chromium on a machine with IPv6 disabled, the RTC_DCHECK fails and in release build, it could leak to further crash in chromium's rtc_peer_connection_hanlder.cc. by Guo-wei Shieh · 9 years ago
  41. 9af97f8 WebRTC should generate default private address even when adapter enumeration is disabled. by Guo-wei Shieh · 9 years ago
  42. 023f3ef Create network change notifier and pass the event to NetworkManager by honghaiz · 9 years ago
  43. ea1012b address comments from https://codereview.webrtc.org/1277263002/ by guoweis · 9 years ago
  44. 86cb923 In the past, P2PPortAllocator.enable_multiple_routes is the indicator whether we should bind to the any address. It's easy to translate that into a port allocator flag in P2PPortAllocator's ctor. Going forward, we have to depend on an asynchronous permission check to determine whether gathering local address is allowed or not, hence the current way of passing it through constructor approach won't work any more. The asynchronous check will trigger SignalNetowrksChanged so we could only check that inside DoAllocate. by Guo-wei Shieh · 9 years ago
  45. 47872ec In the past, P2PPortAllocator.enable_multiple_routes is the indicator whether we should bind to the any address. It's easy to translate that into a port allocator flag in P2PPortAllocator's ctor. Going forward, we have to depend on an asynchronous permission check to determine whether gathering local address is allowed or not, hence the current way of passing it through constructor approach won't work any more. The asynchronous check will trigger SignalNetowrksChanged so we could only check that inside DoAllocate. by Guo-wei Shieh · 9 years ago
  46. 370c884 Revert "Generate localhost candidate when no STUN/TURN and portallocator has the right flag spefied." by Guo-wei Shieh · 9 years ago
  47. ba9ab4c In the past, P2PPortAllocator.enable_multiple_routes is the indicator whether we should bind to the any address. It's easy to translate that into a port allocator flag in P2PPortAllocator's ctor. Going forward, we have to depend on an asynchronous permission check to determine whether gathering local address is allowed or not, hence the current way of passing it through constructor approach won't work any more. The asynchronous check will trigger SignalNetowrksChanged so we could only check that inside DoAllocate. by Guo-wei Shieh · 9 years ago
  48. b91d0f5 1. Have IPIsPrivate calling IPIsLinkLocal by guoweis@webrtc.org · 9 years ago
  49. 67186fe Fix clang style warnings in webrtc/base by kwiberg@webrtc.org · 9 years ago
  50. 07dcf60 Revert 8532 "Ensure only temporary IPv6 address is selected as t..." by aluebs@webrtc.org · 9 years ago
  51. 385a7ce Ensure only temporary IPv6 address is selected as the best IP. by guoweis@webrtc.org · 9 years ago
  52. 9dfe7aa Fix WebRTC IP leaks. by guoweis@webrtc.org · 9 years ago
  53. f358aea Fix WebRTC IP leaks. by guoweis@webrtc.org · 9 years ago
  54. 006521d Makes libjingle_peerconnection_android_unittest run on networkless devices. by phoglund@webrtc.org · 9 years ago
  55. 2444d96 Control the max IPv6 Networks used by WebRTC. by guoweis@webrtc.org · 9 years ago
  56. a094cac Add stats for network merge. by guoweis@webrtc.org · 9 years ago
  57. 55360ae Revert "Add adapter_type into Candidate object." by guoweis@webrtc.org · 10 years ago
  58. aaf02cc Add adapter_type into Candidate object. by guoweis@webrtc.org · 10 years ago
  59. fb108b5 Revert r7885. by pbos@webrtc.org · 10 years ago
  60. 8c9d79a Add adapter_type into Candidate object. by guoweis@webrtc.org · 10 years ago
  61. 369a637 Implemented Network::GetBestIP() selection logic as following. by guoweis@webrtc.org · 10 years ago
  62. 40c2aa3 Implemented Network::GetBestIP() selection logic as following. by guoweis@webrtc.org · 10 years ago
  63. f8bff76 Implemented Network::GetBestIP() selection logic as following. by guoweis@webrtc.org · 10 years ago
  64. fa60398 Add a new class InterfaceAddress inherited from IPAddress to keep track of IPv6 Address flags. by guoweis@webrtc.org · 10 years ago
  65. f048872 Adds a modified copy of talk/base to webrtc/base. It is the first step in by henrike@webrtc.org · 10 years ago
  66. e9a604a Revert 6107 "Adds a modified copy of talk/base to webrtc/base. I..." by perkj@webrtc.org · 10 years ago
  67. 2c7d1b3 Adds a modified copy of talk/base to webrtc/base. It is the first step in migrating talk/base to webrtc/base. by henrike@webrtc.org · 10 years ago