- 21 Jan, 2021 1 commit
-
-
aarshkshah1992 authored
-
- 20 May, 2020 1 commit
-
-
Steven Allen authored
-
- 11 Aug, 2019 1 commit
-
-
skillful-alex authored
-
- 01 Dec, 2018 1 commit
-
-
Cole Brown authored
-
- 21 Jun, 2018 1 commit
-
-
Steven Allen authored
This sucks but I can't think of a better way to do this. We really do want to expose these features and doing so through type assertions is very go-like.
-
- 08 Mar, 2018 1 commit
-
-
Steven Allen authored
This method made implementing the manet.Listener interface annoying. Also, this lets us drop the "use with caution" warning as we're now *wrapping* the listener instead of exposing internal state.
-
- 04 Mar, 2018 1 commit
-
-
Lars Gierth authored
-
- 13 Aug, 2017 1 commit
-
-
Tom Swindell authored
Signed-off-by: Tom Swindell <t.swindell@rubyx.co.uk>
-
- 17 Mar, 2017 1 commit
-
-
Hector Sanjuan authored
License: MIT Signed-off-by: Hector Sanjuan <code@hector.link>
-
- 19 Sep, 2016 1 commit
-
-
jbenet authored
-
- 16 Sep, 2016 1 commit
-
-
Jeromy authored
-
- 17 Aug, 2016 1 commit
-
-
Jeromy authored
-
- 10 Jun, 2016 1 commit
-
-
Jeromy authored
-
- 27 Apr, 2016 1 commit
-
-
Jeromy authored
-
- 03 Oct, 2015 1 commit
-
-
Jeromy authored
-
- 18 Jun, 2015 1 commit
-
-
Juan Batiz-Benet authored
License: MIT Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
-
- 19 Jan, 2015 1 commit
-
-
Juan Batiz-Benet authored
-
- 13 Jan, 2015 2 commits
-
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
- 09 Jan, 2015 1 commit
-
-
Juan Batiz-Benet authored
-
- 20 Nov, 2014 3 commits
-
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
- 05 Nov, 2014 1 commit
-
-
Juan Batiz-Benet authored
-
- 11 Oct, 2014 3 commits
-
-
Juan Batiz-Benet authored
Implements: - Conn - Dial, Dialer - Listen, Listener
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
- 06 Oct, 2014 1 commit
-
-
Juan Batiz-Benet authored
This commit changes the struct to a new Multiaddr interface: ```Go type Multiaddr interface { Equal(Multiaddr) bool Bytes() []byte String() string Protocols() []*Protocol Encapsulate(Multiaddr) Multiaddr Decapsulate(Multiaddr) Multiaddr } ``` This means a few things have changed: - use Multiaddr interface, struct not exported - Bytes returns a copy of the internal bytes - Some methods no longer return errors (catch errors in NewMultiaddr) - String (panics if malformed) - Protocols (panics if malformed) - Decapsulate (no-op if not prefix) - Moved net-specific functions to package - Multiaddr.DialArgs() -> DialArgs(Multiaddr) - Multiaddr.IsThinWaist() -> IsThinWaist(Multiaddr) cc @whyrusleeping @perfmode
-
- 13 Sep, 2014 1 commit
-
-
Juan Batiz-Benet authored
-