decanus 50fca4b8cf bye
2020-02-28 15:26:45 +01:00
2020-02-27 17:21:38 +01:00
2020-02-27 04:09:11 +01:00
2020-02-28 13:34:33 +01:00
fix
2020-02-28 15:24:00 +01:00
2020-02-27 21:33:28 +01:00
2020-02-28 13:42:57 +01:00
2020-02-28 13:42:57 +01:00
2020-02-27 18:40:23 +01:00
2020-02-28 13:36:32 +01:00
2020-02-27 04:09:11 +01:00
2020-02-28 13:34:06 +01:00
fix
2020-02-28 15:24:00 +01:00
2020-02-27 17:26:53 +01:00
2020-02-27 17:26:53 +01:00
2020-02-28 13:39:46 +01:00

go-multiprotocol

Version MIT License API Reference Go Report Card Build Status

A lot of this code has been adapted from multiaddr.

Multiprotocol can be initialized using a CSV file, for the CSV format see the specification.

package main

import mp "github.com/vacp2p/go-multiprotocol"

err := mp.Init("testdata/multiprotocol.csv")
if err != nil {
    print(err)
    return
}

mp, err := mp.NewMultiprotocol("/vac/waku/2/store/2/relay/2")
if err != nil {
    print(err)
}

Protocols can also be added programatically using the AddProtocol function.

Description
No description provided
Readme MIT 1.3 MiB
Languages
Go 97.7%
Makefile 2.3%