update imports to point to vendored repos

This commit is contained in:
Juan Batiz-Benet 2014-11-20 00:55:01 -08:00
parent 4d83cc616a
commit 625fac6e50
6 changed files with 9 additions and 9 deletions

View File

@ -5,8 +5,8 @@ import (
"net" "net"
"strings" "strings"
utp "github.com/h2so5/utp" utp "github.com/jbenet/go-multiaddr-net/Godeps/_workspace/src/github.com/h2so5/utp"
ma "github.com/jbenet/go-multiaddr" ma "github.com/jbenet/go-multiaddr-net/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
) )
var errIncorrectNetAddr = fmt.Errorf("incorrect network addr conversion") var errIncorrectNetAddr = fmt.Errorf("incorrect network addr conversion")

View File

@ -4,8 +4,8 @@ import (
"net" "net"
"testing" "testing"
utp "github.com/h2so5/utp" utp "github.com/jbenet/go-multiaddr-net/Godeps/_workspace/src/github.com/h2so5/utp"
ma "github.com/jbenet/go-multiaddr" ma "github.com/jbenet/go-multiaddr-net/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
) )
type GenFunc func() (ma.Multiaddr, error) type GenFunc func() (ma.Multiaddr, error)

2
ip.go
View File

@ -3,7 +3,7 @@ package manet
import ( import (
"bytes" "bytes"
ma "github.com/jbenet/go-multiaddr" ma "github.com/jbenet/go-multiaddr-net/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
) )
// Loopback Addresses // Loopback Addresses

View File

@ -6,7 +6,7 @@ import (
"fmt" "fmt"
"os" "os"
ma "github.com/jbenet/go-multiaddr" ma "github.com/jbenet/go-multiaddr-net/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
manet "github.com/jbenet/go-multiaddr-net" manet "github.com/jbenet/go-multiaddr-net"
) )

4
net.go
View File

@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"net" "net"
utp "github.com/h2so5/utp" utp "github.com/jbenet/go-multiaddr-net/Godeps/_workspace/src/github.com/h2so5/utp"
ma "github.com/jbenet/go-multiaddr" ma "github.com/jbenet/go-multiaddr-net/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
) )
// Conn is the equivalent of a net.Conn object. It is the // Conn is the equivalent of a net.Conn object. It is the

View File

@ -6,7 +6,7 @@ import (
"sync" "sync"
"testing" "testing"
ma "github.com/jbenet/go-multiaddr" ma "github.com/jbenet/go-multiaddr-net/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
) )
func newMultiaddr(t *testing.T, m string) ma.Multiaddr { func newMultiaddr(t *testing.T, m string) ma.Multiaddr {