From ac9baf0039641dccc75631ee5e52e1c5e97245fb Mon Sep 17 00:00:00 2001 From: Callan Bryant Date: Sun, 25 Oct 2020 15:15:46 +0000 Subject: [PATCH] fc -> fd --- init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.go b/init.go index 13bbec9..4233b2e 100644 --- a/init.go +++ b/init.go @@ -64,7 +64,7 @@ func getULANet() JSONIPNet { // fc00 prefix with 40 bit global id and zero (16 bit) subnet ID return JSONIPNet{ IPNet: net.IPNet{ - net.IP{0xfc, 0, rbs[0], rbs[1], rbs[2], rbs[3], rbs[4], 0, 0, 0, 0, 0, 0, 0, 0, 0}, + net.IP{0xfd, 0, rbs[0], rbs[1], rbs[2], rbs[3], rbs[4], 0, 0, 0, 0, 0, 0, 0, 0, 0}, net.IPMask{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0, 0, 0, 0, 0, 0, 0, 0}, }, }