• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.gx/H19-Aug-2020-21

bin/H19-Aug-2020-147118

multiaddr/H19-Aug-2020-9980

.gitignoreH A D19-Aug-202014 32

.travis.ymlH A D19-Aug-2020394 3121

LICENSEH A D19-Aug-20201.1 KiB2217

MakefileH A D19-Aug-2020174 107

README.mdH A D19-Aug-20202.7 KiB5936

convert.goH A D19-Aug-20201 KiB3924

doc.goH A D19-Aug-202074 31

go.modH A D19-Aug-2020110 63

go.sumH A D19-Aug-20203.3 KiB3635

ip.goH A D19-Aug-20201.2 KiB4526

net.goH A D19-Aug-20201.9 KiB6737

private.goH A D19-Aug-2020786 2915

registry.goH A D19-Aug-2020816 3116

README.md

1# DEPRECATION NOTICE
2
3This package has moved into go-multiaddr as a sub-package,
4`github.com/multiformats/go-multiaddr/net`.
5
6# go-multiaddr-net
7
8[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](https://protocol.ai)
9[![](https://img.shields.io/badge/project-multiformats-blue.svg?style=flat-square)](https://github.com/multiformats/multiformats)
10[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](https://webchat.freenode.net/?channels=%23ipfs)
11[![](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)
12[![GoDoc](https://godoc.org/github.com/multiformats/go-multiaddr-net?status.svg)](https://godoc.org/github.com/multiformats/go-multiaddr-net)
13[![Travis CI](https://img.shields.io/travis/multiformats/go-multiaddr-net.svg?style=flat-square&branch=master)](https://travis-ci.org/multiformats/go-multiaddr-net)
14
15<!---[![codecov.io](https://img.shields.io/codecov/c/github/multiformats/go-multiaddr-net.svg?style=flat-square&branch=master)](https://codecov.io/github/multiformats/go-multiaddr-net?branch=master)--->
16
17> Multiaddress net tools
18
19This package provides [Multiaddr](https://github.com/multiformats/go-multiaddr) specific versions of common functions in [stdlib](https://github.com/golang/go/tree/master/src)'s `net` package. This means wrappers of standard net symbols like `net.Dial` and `net.Listen`, as well
20as conversion to and from `net.Addr`.
21
22## Table of Contents
23
24- [Install](#install)
25- [Usage](#usage)
26- [Maintainers](#maintainers)
27- [Contribute](#contribute)
28- [License](#license)
29
30## Install
31
32`go-multiaddr-net` is a standard Go module which can be installed with:
33
34```sh
35go get github.com/multiformats/go-multiaddr-net
36```
37
38Note that `go-multiaddr-net` is packaged with Gx, so it is recommended to use Gx to install and use it (see Usage section).
39
40
41## Usage
42
43See the docs:
44
45- `multiaddr/net`: https://godoc.org/github.com/multiformats/go-multiaddr-net
46- `multiaddr`: https://godoc.org/github.com/multiformats/go-multiaddr
47
48## Contribute
49
50Contributions welcome. Please check out [the issues](https://github.com/multiformats/go-multiaddr-net/issues).
51
52Check out our [contributing document](https://github.com/multiformats/multiformats/blob/master/contributing.md) 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](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
53
54Small note: If editing the README, please conform to the [standard-readme](https://github.com/RichardLitt/standard-readme) specification.
55
56## License
57
58[MIT](LICENSE) © 2014 Juan Batiz-Benet
59