1. b2f5e30 If adapter type is unknown and interface name is "ipsec", treat as VPN. by deadbeef · 8 years ago
  2. 35733f6 Relanding: Move "max IPv6 networks" logic to BasicPortAllocator, and fix sorting. by deadbeef · 8 years ago
  3. 215d0e0 Revert of Move "max IPv6 networks" logic to BasicPortAllocator, and fix sorting. (patchset #2 id:20001 of https://codereview.webrtc.org/2983213002/ ) by deadbeef · 8 years ago
  4. b8f5318 Move "max IPv6 networks" logic to BasicPortAllocator, and fix sorting. by deadbeef · 8 years ago
  5. 1979696 Reland "Update includes for webrtc/{base => rtc_base} rename (3/3)" by kjellander · 8 years ago
  6. 7b8e182 Revert "Update includes for webrtc/{base => rtc_base} rename (3/3)" by Henrik Kjellander · 8 years ago
  7. a6c4568 Update includes for webrtc/{base => rtc_base} rename (3/3) by kjellander · 8 years ago
  8. fb3e1b6 Reland "Move webrtc/{base => rtc_base}" (https://codereview.webrtc.org/2877023002) by Henrik Kjellander · 8 years ago[Renamed from base/network.cc]
  9. 88b2dd4 Revert "Move webrtc/{base => rtc_base}" (https://codereview.webrtc.org/2877023002) by Henrik Kjellander · 8 years ago[Renamed from rtc_base/network.cc]
  10. 6f86344 Move webrtc/{base => rtc_base} by Henrik Kjellander · 8 years ago[Renamed from base/network.cc]
  11. 1637841 Replace NULL with nullptr or null in webrtc/base/. by deadbeef · 8 years ago
  12. a875ff8 Replace ASSERT by RTC_DCHECK in all non-test code. by nisse · 8 years ago
  13. 1709986 Replace RTC_DCHECK(false) with RTC_NOTREACHED(). by nisse · 8 years ago
  14. ef6b287 Replace ASSERT(false) by RTC_NOTREACHED(). by nisse · 8 years ago
  15. b0cd35d Do not spam "Connect failed with 101/65" in logs. by skvlad · 8 years ago
  16. bdf80af Do not reconnect the network change signal each time the network manager is started by skvlad · 9 years ago
  17. c0bec8f Adding more detail to MessageQueue::Dispatch logging. by Taylor Brandstetter · 9 years ago
  18. 582271c Set IOS Wifi interface type based on the interface name. by Honghai Zhang · 9 years ago
  19. 07c9fb1 Update the type and cost of existing networks by Honghai Zhang · 9 years ago
  20. 1286d0e Replace scoped_ptr with unique_ptr in webrtc/base/ by jbauch · 9 years ago
  21. 6cabfdd GetDefaultLocalAddress should return the bestIP by honghaiz · 9 years ago
  22. 12cfa58 Remove all uses of the HAVE_CONFIG_H define. by Henrik Kjellander · 9 years ago
  23. ddd067c Add 16-bit network id to the candidate signaling. by honghaiz · 9 years ago
  24. 1bfebbc When doing continual gathering, remove the local ports when a corresponding network is dropped. by honghaiz · 9 years ago
  25. 26c9523 Get the adapter type information from Android OS. by honghaiz · 9 years ago
  26. 2b46569 Fix BasicNetworkManager not to spam logs when internet is unreacheable. by Sergey Ulanov · 9 years ago
  27. 1d9eb31 Add a new interface for creating a udp socket in which it binds the socket to a network if the network handle is set. by honghaiz · 9 years ago
  28. 3de5c82 fix bug 5430 by guoweis · 9 years ago
  29. c9181c5 Fix a -Wunused-function warning in gn builds. by thakis · 9 years ago
  30. 6c68f3b Removing webrtc::PortAllocatorFactoryInterface. by Taylor Brandstetter · 9 years ago
  31. 013a6cf Reland 1531763006 by Guo-wei Shieh · 9 years ago
  32. 08da796 Revert "Enable IPv6 temporary address filtering on iOS." by Guo-wei Shieh · 9 years ago
  33. 9185df8 Enable IPv6 temporary address filtering on iOS. by guoweis · 9 years ago
  34. 0d1f0c0 Fix two problems in network.cc: by honghaiz · 9 years ago
  35. 9c2f41e GetDefaultLocalAddress should return false when the address is invalid by Guo-wei Shieh · 9 years ago
  36. 1e8f5f0 Revert "GetDefaultLocalAddress should return false when the address is invalid" by Guo-wei Shieh · 9 years ago
  37. 64b7954 GetDefaultLocalAddress should return false when the address is invalid by Guo-wei Shieh · 9 years ago
  38. 9f29fe5 WebRTC should generate default private address even when adapter enumeration is disabled. by Guo-wei Shieh · 9 years ago
  39. 1ccc865 Switch usage of _DEBUG macro to NDEBUG. by tfarina · 9 years ago
  40. 1183eb6 Create network change notifier and pass the event to NetworkManager by honghaiz · 9 years ago
  41. 07e22e6 Use suffixed {uint,int}{8,16,32,64}_t types. by Peter Boström · 9 years ago
  42. 5c075c8 Add RTC_ prefix to (D)CHECKs and related macros. by henrikg · 9 years ago
  43. a4b9737 address comments from https://codereview.webrtc.org/1277263002/ by guoweis · 10 years ago
  44. b141f3a 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 · 10 years ago
  45. aacd069 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 · 10 years ago
  46. 8d9e763 Revert "Generate localhost candidate when no STUN/TURN and portallocator has the right flag spefied." by Guo-wei Shieh · 10 years ago
  47. 1b68de3 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 · 10 years ago
  48. f461b4b On iOS, detect pdp_ip networks as cellular. by Noah Richards · 10 years ago
  49. 3e2b596 1. Have IPIsPrivate calling IPIsLinkLocal by guoweis@webrtc.org · 10 years ago
  50. 786b634 Fix clang style warnings in webrtc/base by kwiberg@webrtc.org · 10 years ago
  51. 49042bf Turn on IPv6 for WebRTC as default as required before ramping the experiment to 30%. by guoweis@webrtc.org · 10 years ago
  52. f9cec37 Revert "Turn on IPv6 for WebRTC as default as required before ramping the experiment to 30%." by guoweis@webrtc.org · 10 years ago
  53. 563892f Turn on IPv6 for WebRTC as default as required before ramping the experiment to 30%. by guoweis@webrtc.org · 10 years ago
  54. b2d185b Revert 8532 "Ensure only temporary IPv6 address is selected as t..." by aluebs@webrtc.org · 10 years ago
  55. 82c7a74 Ensure only temporary IPv6 address is selected as the best IP. by guoweis@webrtc.org · 10 years ago
  56. d75d693 Fix WebRTC IP leaks. by guoweis@webrtc.org · 10 years ago
  57. 3ebfc57 Makes libjingle_peerconnection_android_unittest run on networkless devices. by phoglund@webrtc.org · 10 years ago
  58. 352a13e Control the max IPv6 Networks used by WebRTC. by guoweis@webrtc.org · 10 years ago
  59. eab3c09 Add stats for network merge. by guoweis@webrtc.org · 10 years ago
  60. 197856d Ignore virtual box interfaces. by pthatcher@webrtc.org · 10 years ago
  61. 11f2341 Revert "Add adapter_type into Candidate object." by guoweis@webrtc.org · 10 years ago
  62. 82aef75 Add adapter_type into Candidate object. by guoweis@webrtc.org · 10 years ago
  63. d81f3bd Revert r7885. by pbos@webrtc.org · 10 years ago
  64. 7027f05 Add adapter_type into Candidate object. by guoweis@webrtc.org · 10 years ago
  65. 44b7577 Use c++11 features in webrtc/base/network.cc as a test to see if we can use them. by pthatcher@webrtc.org · 10 years ago
  66. 2738d47 Implemented Network::GetBestIP() selection logic as following. by guoweis@webrtc.org · 10 years ago
  67. 170b1f3 Implemented Network::GetBestIP() selection logic as following. by guoweis@webrtc.org · 10 years ago
  68. 1e0452c Implemented Network::GetBestIP() selection logic as following. by guoweis@webrtc.org · 10 years ago
  69. b1e6145 Add a new class InterfaceAddress inherited from IPAddress to keep track of IPv6 Address flags. by guoweis@webrtc.org · 11 years ago
  70. b6f295d fix a bug in the logic when new Networks are merged. This happens when by guoweis@webrtc.org · 11 years ago
  71. 47be73b Adds a modified copy of talk/base to webrtc/base. It is the first step in by henrike@webrtc.org · 11 years ago
  72. 50daa53 Revert 6107 "Adds a modified copy of talk/base to webrtc/base. I..." by perkj@webrtc.org · 11 years ago
  73. 04e6703 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 · 11 years ago