Bug 1027456 - Use assigned multicast address for discovery. r=paul

This commit is contained in:
J. Ryan Stinnett 2014-07-02 12:56:00 +02:00
parent f8ecba660d
commit 3a5ec129dd

View File

@ -39,10 +39,9 @@ const UDPSocket = CC("@mozilla.org/network/udp-socket;1",
"nsIUDPSocket",
"init");
// TODO Bug 1027456: May need to reserve these with IANA
const SCAN_PORT = 50624;
const UPDATE_PORT = 50625;
const ADDRESS = "224.0.0.200";
const ADDRESS = "224.0.0.115";
const REPLY_TIMEOUT = 5000;
const { XPCOMUtils } = Cu.import("resource://gre/modules/XPCOMUtils.jsm", {});