summaryrefslogtreecommitdiffhomepage
path: root/pkg/dhcp/client.go
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2018-06-15 15:35:09 -0700
committerShentubot <shentubot@google.com>2018-06-15 15:36:00 -0700
commitbd2d1aaa16474202b1a2c1edbf62e6782fa2dc36 (patch)
tree06e24568123a156d70ab3da56eb66c17afdc6910 /pkg/dhcp/client.go
parent437890dc4b6987a64ac98766c752ce64091757dc (diff)
Replace crypto/rand with internal rand package
PiperOrigin-RevId: 200784607 Change-Id: I39aa6ee632936dcbb00fc298adccffa606e9f4c0
Diffstat (limited to 'pkg/dhcp/client.go')
-rw-r--r--pkg/dhcp/client.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/dhcp/client.go b/pkg/dhcp/client.go
index 37deb69ff..09b724b48 100644
--- a/pkg/dhcp/client.go
+++ b/pkg/dhcp/client.go
@@ -7,12 +7,12 @@ package dhcp
import (
"bytes"
"context"
- "crypto/rand"
"fmt"
"log"
"sync"
"time"
+ "gvisor.googlesource.com/gvisor/pkg/rand"
"gvisor.googlesource.com/gvisor/pkg/tcpip"
"gvisor.googlesource.com/gvisor/pkg/tcpip/network/ipv4"
"gvisor.googlesource.com/gvisor/pkg/tcpip/stack"