Update multiformats imports

This commit is contained in:
Lars Gierth 2016-09-29 14:52:32 +02:00
parent c202f79eef
commit e20e4e73a9
4 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ go get multiformats/multiaddr
#### Simple
```go
import ma "github.com/jbenet/go-multiaddr"
import ma "github.com/multiformats/go-multiaddr"
// construct from a string (err signals parse failure)
m1, err := ma.NewMultiaddr("/ip4/127.0.0.1/udp/1234")

View File

@ -4,13 +4,13 @@ import (
"bytes"
"encoding/base32"
"encoding/binary"
"errors"
"fmt"
"net"
"strconv"
"strings"
"errors"
mh "github.com/jbenet/go-multihash"
mh "github.com/multiformats/go-multihash"
)
func stringToBytes(s string) ([]byte, error) {
@ -298,7 +298,7 @@ func addressBytesToString(p Protocol, b []byte) (string, error) {
case P_ONION:
addr := strings.ToLower(base32.StdEncoding.EncodeToString(b[0:10]))
port := binary.BigEndian.Uint16(b[10:12])
return addr + ":"+ strconv.Itoa(int(port)), nil
return addr + ":" + strconv.Itoa(int(port)), nil
case P_UNIX:
// the address is a varint len prefixed string

2
doc.go
View File

@ -10,7 +10,7 @@ Basic Use:
import (
"bytes"
"strings"
ma "github.com/jbenet/go-multiaddr"
ma "github.com/multiformats/go-multiaddr"
)
// construct from a string (err signals parse failure)

View File

@ -7,7 +7,7 @@ Learn more here: https://github.com/jbenet/multiaddr
Multiaddrs have both a binary and string representation.
import ma "github.com/jbenet/go-multiaddr"
import ma "github.com/multiformats/go-multiaddr"
addr, err := ma.NewMultiaddr("/ip4/1.2.3.4/tcp/80")
// err non-nil when parsing failed.