NetworkLinkServiceDefines.h (807B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 #ifndef NETWORK_LINK_SERVICE_DEFINES_H_ 6 #define NETWORK_LINK_SERVICE_DEFINES_H_ 7 8 namespace mozilla { 9 namespace net { 10 11 // IP addresses that are used to check the route for public traffic. They are 12 // used just to check routing rules, no packets are sent to those hosts. 13 // Initially, addresses of host detectportal.firefox.com were used but they 14 // don't necessarily need to be updated when addresses of this host change. 15 #define ROUTE_CHECK_IPV4 "23.219.91.27" 16 #define ROUTE_CHECK_IPV6 "2a02:26f0:40::17db:5b1b" 17 18 } // namespace net 19 } // namespace mozilla 20 21 #endif // NETWORK_LINK_SERVICE_DEFINES_H_