status-go/vendor/github.com/multiformats/go-multiaddr
Prem Chaitanya Prathi 97db14083a
chore_: bump go-waku with filter loop fix (#5909)
* chore_: bump go-waku with filter loop fix

* fix_: correct fleet node for staging fleet

* fix_: use shards for lightclient init

---------

Co-authored-by: Richard Ramos <info@richardramos.me>
2024-10-10 17:03:36 +05:30
..
net chore_: bump go-waku (#5289) 2024-06-05 16:10:03 -04:00
.gitignore migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
LICENSE Add rendezvous implementation for discovery interface 2018-07-25 15:10:57 +03:00
README.md migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
codec.go chore_: bump go-waku (#5150) 2024-05-15 19:15:00 -04:00
codecov.yml migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
component.go go-waku integration (#2247) 2021-06-16 16:19:45 -04:00
doc.go chore: upgrade deps 2022-11-09 17:39:17 +03:00
filter.go chore: upgrade deps 2022-11-09 17:39:17 +03:00
interface.go chore: upgrade deps 2022-11-09 17:39:17 +03:00
multiaddr.go chore_: bump go-waku (#5150) 2024-05-15 19:15:00 -04:00
package.json migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
protocol.go chore: bump go-waku (#2404) 2021-10-19 09:43:41 -04:00
protocols.go chore_: bump go-waku with filter loop fix (#5909) 2024-10-10 17:03:36 +05:30
transcoders.go chore_: bump go-waku with filter loop fix (#5909) 2024-10-10 17:03:36 +05:30
util.go chore_: bump go-waku (#5150) 2024-05-15 19:15:00 -04:00
varint.go go-waku integration (#2247) 2021-06-16 16:19:45 -04:00
version.json chore_: bump go-waku with filter loop fix (#5909) 2024-10-10 17:03:36 +05:30

README.md

go-multiaddr

GoDoc Travis CI codecov.io

multiaddr implementation in go

Multiaddr is a standard way to represent addresses that:

  • Support any standard network protocols.
  • Self-describe (include protocols).
  • Have a binary packed format.
  • Have a nice string representation.
  • Encapsulate well.

Table of Contents

Install

go get github.com/multiformats/go-multiaddr

Usage

Example

Simple

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")

// construct from bytes (err signals parse failure)
m2, err := ma.NewMultiaddrBytes(m1.Bytes())

// true
strings.Equal(m1.String(), "/ip4/127.0.0.1/udp/1234")
strings.Equal(m1.String(), m2.String())
bytes.Equal(m1.Bytes(), m2.Bytes())
m1.Equal(m2)
m2.Equal(m1)

Protocols

// get the multiaddr protocol description objects
m1.Protocols()
// []Protocol{
//   Protocol{ Code: 4, Name: 'ip4', Size: 32},
//   Protocol{ Code: 17, Name: 'udp', Size: 16},
// }

En/decapsulate

import ma "github.com/multiformats/go-multiaddr"

m, err := ma.NewMultiaddr("/ip4/127.0.0.1/udp/1234")
// <Multiaddr /ip4/127.0.0.1/udp/1234>

sctpMA, err := ma.NewMultiaddr("/sctp/5678")

m.Encapsulate(sctpMA)
// <Multiaddr /ip4/127.0.0.1/udp/1234/sctp/5678>

udpMA, err := ma.NewMultiaddr("/udp/1234")

m.Decapsulate(udpMA) // up to + inc last occurrence of subaddr
// <Multiaddr /ip4/127.0.0.1>

Tunneling

Multiaddr allows expressing tunnels very nicely.

printer, _ := ma.NewMultiaddr("/ip4/192.168.0.13/tcp/80")
proxy, _ := ma.NewMultiaddr("/ip4/10.20.30.40/tcp/443")
printerOverProxy := proxy.Encapsulate(printer)
// /ip4/10.20.30.40/tcp/443/ip4/192.168.0.13/tcp/80

proxyAgain := printerOverProxy.Decapsulate(printer)
// /ip4/10.20.30.40/tcp/443

Contribute

Contributions welcome. Please check out the issues.

Check out our contributing document for more information on how we work, and about contributing in general. Please be aware that all interactions related to multiformats are subject to the IPFS Code of Conduct.

Small note: If editing the README, please conform to the standard-readme specification.

License

MIT © 2014 Juan Batiz-Benet