Skip to content
This repository was archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1060 from /issues/1059-remove-google-code-refs
Browse files Browse the repository at this point in the history
Remove all the imports from "code.google.com"
  • Loading branch information
paulbellamy committed Jul 2, 2015
2 parents 18a4c14 + f6ffd60 commit 3fd1465
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion prog/weaveproxy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"code.google.com/p/getopt"
"github.com/pborman/getopt"
. "github.com/weaveworks/weave/common"
"github.com/weaveworks/weave/proxy"
)
Expand Down
6 changes: 3 additions & 3 deletions router/crypto.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"fmt"
"sync"

"code.google.com/p/go-bit/bit"
"code.google.com/p/go.crypto/nacl/box"
"code.google.com/p/go.crypto/nacl/secretbox"
"github.com/andybalholm/go-bit"
"golang.org/x/crypto/nacl/box"
"golang.org/x/crypto/nacl/secretbox"
)

func GenerateKeyPair() (publicKey, privateKey *[32]byte, err error) {
Expand Down
4 changes: 2 additions & 2 deletions router/ethernet_decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"bytes"
"net"

"code.google.com/p/gopacket"
"code.google.com/p/gopacket/layers"
"github.com/google/gopacket"
"github.com/google/gopacket/layers"
. "github.com/weaveworks/weave/common"
)

Expand Down
4 changes: 2 additions & 2 deletions router/forwarder.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"syscall"
"time"

"code.google.com/p/gopacket"
"code.google.com/p/gopacket/layers"
"github.com/google/gopacket"
"github.com/google/gopacket/layers"
)

type ForwardedFrame struct {
Expand Down
2 changes: 1 addition & 1 deletion router/pcap.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package router
import (
"fmt"

"code.google.com/p/gopacket/pcap"
"github.com/google/gopacket/pcap"
)

type PcapIO struct {
Expand Down
4 changes: 2 additions & 2 deletions router/udp_sender.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"net"
"syscall"

"code.google.com/p/gopacket"
"code.google.com/p/gopacket/layers"
"github.com/google/gopacket"
"github.com/google/gopacket/layers"
. "github.com/weaveworks/weave/common"
)

Expand Down

0 comments on commit 3fd1465

Please sign in to comment.