File tree Expand file tree Collapse file tree 10 files changed +15
-15
lines changed Expand file tree Collapse file tree 10 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 1
1
# multiaddr/net - Multiaddr friendly net
2
2
3
- Package multiaddr/net provides [ Multiaddr] ( http://github.com/jbenet /go-multiaddr ) specific versions of common
3
+ Package multiaddr/net provides [ Multiaddr] ( http://github.com/multiformats /go-multiaddr ) specific versions of common
4
4
functions in stdlib's net package. This means wrappers of
5
5
standard net symbols like net.Dial and net.Listen, as well
6
6
as conversion to/from net.Addr.
7
7
8
8
Docs:
9
9
10
- - ` multiaddr/net ` : https://godoc.org/github.com/jbenet /go-multiaddr-net
11
- - ` multiaddr ` : https://godoc.org/github.com/jbenet /go-multiaddr
10
+ - ` multiaddr/net ` : https://godoc.org/github.com/multiformats /go-multiaddr-net
11
+ - ` multiaddr ` : https://godoc.org/github.com/multiformats /go-multiaddr
Original file line number Diff line number Diff line change 5
5
"net"
6
6
"strings"
7
7
8
- ma "github.com/jbenet /go-multiaddr"
8
+ ma "github.com/multiformats /go-multiaddr"
9
9
)
10
10
11
11
var errIncorrectNetAddr = fmt .Errorf ("incorrect network addr conversion" )
Original file line number Diff line number Diff line change 4
4
"net"
5
5
"testing"
6
6
7
- ma "github.com/jbenet /go-multiaddr"
7
+ ma "github.com/multiformats /go-multiaddr"
8
8
)
9
9
10
10
type GenFunc func () (ma.Multiaddr , error )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package manet
3
3
import (
4
4
"bytes"
5
5
6
- ma "github.com/jbenet /go-multiaddr"
6
+ ma "github.com/multiformats /go-multiaddr"
7
7
)
8
8
9
9
// Loopback Addresses
Original file line number Diff line number Diff line change 6
6
"fmt"
7
7
"os"
8
8
9
- ma "github.com/jbenet /go-multiaddr"
9
+ ma "github.com/multiformats /go-multiaddr"
10
10
manet "github.com/multiformats/go-multiaddr-net"
11
11
)
12
12
Original file line number Diff line number Diff line change 5
5
"fmt"
6
6
"net"
7
7
8
- ma "github.com/jbenet /go-multiaddr"
8
+ ma "github.com/multiformats /go-multiaddr"
9
9
)
10
10
11
11
// Conn is the equivalent of a net.Conn object. It is the
Original file line number Diff line number Diff line change 7
7
"sync"
8
8
"testing"
9
9
10
- ma "github.com/jbenet /go-multiaddr"
10
+ ma "github.com/multiformats /go-multiaddr"
11
11
)
12
12
13
13
func newMultiaddr (t * testing.T , m string ) ma.Multiaddr {
Original file line number Diff line number Diff line change 1
1
{
2
2
"author" : " jbenet" ,
3
3
"bugs" : {
4
- "url" : " https://github.com/jbenet /go-multiaddr-net"
4
+ "url" : " https://github.com/multiformats /go-multiaddr-net"
5
5
},
6
6
"gx" : {
7
- "dvcsimport" : " github.com/jbenet /go-multiaddr-net"
7
+ "dvcsimport" : " github.com/multiformats /go-multiaddr-net"
8
8
},
9
9
"gxDependencies" : [
10
10
{
11
- "author" : " whyrusleeping " ,
12
- "hash" : " QmYzDkkgAEmrcNzFCiYo6L1dTX4EAG1gZkbtdbd9trL4vd " ,
11
+ "author" : " multiformats " ,
12
+ "hash" : " QmfZmQJ7J3MeBChAdcYfgDAWfbqjMU75bdLcmpD3TEhSZ1 " ,
13
13
"name" : " go-multiaddr" ,
14
14
"version" : " 0.0.0"
15
15
}
Original file line number Diff line number Diff line change 5
5
"net"
6
6
"sync"
7
7
8
- ma "github.com/jbenet /go-multiaddr"
8
+ ma "github.com/multiformats /go-multiaddr"
9
9
)
10
10
11
11
type FromNetAddrFunc func (a net.Addr ) (ma.Multiaddr , error )
Original file line number Diff line number Diff line change 4
4
"net"
5
5
"testing"
6
6
7
- ma "github.com/jbenet /go-multiaddr"
7
+ ma "github.com/multiformats /go-multiaddr"
8
8
)
9
9
10
10
func TestRegisterSpec (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments