Commit e20e4e73 authored by Lars Gierth's avatar Lars Gierth

Update multiformats imports

parent c202f79e
......@@ -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")
......
......@@ -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
......
......@@ -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)
......
......@@ -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.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment