diff --git a/README.md b/README.md index eaaa2dc..e37179f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# go-floodsub +# go-libp2p-pubsub [![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io) [![](https://img.shields.io/badge/project-libp2p-blue.svg?style=flat-square)](http://github.com/libp2p/libp2p) @@ -6,9 +6,7 @@ > A pubsub system with flooding and gossiping variants. - - -PubSub is a work in progress, with floodsub as an initial protocol, followed by gossipsub ([spec](https://github.com/libp2p/specs/tree/master/pubsub/gossipsub), [gossipsub.go](https://github.com/libp2p/go-floodsub/blob/master/gossipsub.go)). +PubSub is a work in progress, with floodsub as an initial protocol, followed by gossipsub ([spec](https://github.com/libp2p/specs/tree/master/pubsub/gossipsub), [gossipsub.go](https://github.com/libp2p/go-libp2p-pubsub/blob/master/gossipsub.go)). ## Table of Contents @@ -20,7 +18,7 @@ PubSub is a work in progress, with floodsub as an initial protocol, followed by ## Install ``` -go get github.com/libp2p/go-floodsub +go get github.com/libp2p/go-libp2p-pubsub ``` ## Usage @@ -33,7 +31,7 @@ See [libp2p/specs/pubsub#Implementations](https://github.com/libp2p/specs/tree/m ## Contribute -Contributions welcome. Please check out [the issues](https://github.com/libp2p/go-floodsub/issues). +Contributions welcome. Please check out [the issues](https://github.com/libp2p/go-libp2p-pubsub/issues). Check out our [contributing document](https://github.com/libp2p/community/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). diff --git a/comm.go b/comm.go index e640222..b2a9786 100644 --- a/comm.go +++ b/comm.go @@ -1,11 +1,11 @@ -package floodsub +package pubsub import ( "bufio" "context" "io" - pb "github.com/libp2p/go-floodsub/pb" + pb "github.com/libp2p/go-libp2p-pubsub/pb" ggio "github.com/gogo/protobuf/io" proto "github.com/gogo/protobuf/proto" diff --git a/floodsub.go b/floodsub.go index 1b2eb08..6c8d3ae 100644 --- a/floodsub.go +++ b/floodsub.go @@ -1,9 +1,9 @@ -package floodsub +package pubsub import ( "context" - pb "github.com/libp2p/go-floodsub/pb" + pb "github.com/libp2p/go-libp2p-pubsub/pb" host "github.com/libp2p/go-libp2p-host" peer "github.com/libp2p/go-libp2p-peer" diff --git a/floodsub_test.go b/floodsub_test.go index e671372..25e2fbb 100644 --- a/floodsub_test.go +++ b/floodsub_test.go @@ -1,4 +1,4 @@ -package floodsub +package pubsub import ( "bytes" diff --git a/gossipsub.go b/gossipsub.go index fcdf298..ab0a6d9 100644 --- a/gossipsub.go +++ b/gossipsub.go @@ -1,11 +1,11 @@ -package floodsub +package pubsub import ( "context" "math/rand" "time" - pb "github.com/libp2p/go-floodsub/pb" + pb "github.com/libp2p/go-libp2p-pubsub/pb" host "github.com/libp2p/go-libp2p-host" peer "github.com/libp2p/go-libp2p-peer" diff --git a/gossipsub_test.go b/gossipsub_test.go index 8dae7ff..82db855 100644 --- a/gossipsub_test.go +++ b/gossipsub_test.go @@ -1,4 +1,4 @@ -package floodsub +package pubsub import ( "bytes" diff --git a/mcache.go b/mcache.go index f501d1e..827987a 100644 --- a/mcache.go +++ b/mcache.go @@ -1,7 +1,7 @@ -package floodsub +package pubsub import ( - pb "github.com/libp2p/go-floodsub/pb" + pb "github.com/libp2p/go-libp2p-pubsub/pb" ) func NewMessageCache(gossip, history int) *MessageCache { diff --git a/mcache_test.go b/mcache_test.go index 6bc526c..5616c21 100644 --- a/mcache_test.go +++ b/mcache_test.go @@ -1,11 +1,11 @@ -package floodsub +package pubsub import ( "encoding/binary" "fmt" "testing" - pb "github.com/libp2p/go-floodsub/pb" + pb "github.com/libp2p/go-libp2p-pubsub/pb" ) func TestMessageCache(t *testing.T) { diff --git a/notify.go b/notify.go index 3da7ee3..7abe75f 100644 --- a/notify.go +++ b/notify.go @@ -1,4 +1,4 @@ -package floodsub +package pubsub import ( inet "github.com/libp2p/go-libp2p-net" diff --git a/package.json b/package.json index 907f8cc..59e4b44 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "author": "whyrusleeping", "bugs": { - "url": "https://github.com/libp2p/go-floodsub" + "url": "https://github.com/libp2p/go-libp2p-pubsub" }, "gx": { - "dvcsimport": "github.com/libp2p/go-floodsub" + "dvcsimport": "github.com/libp2p/go-libp2p-pubsub" }, "gxDependencies": [ { @@ -75,8 +75,8 @@ ], "gxVersion": "0.9.0", "language": "go", - "license": "", - "name": "go-libp2p-floodsub", + "license": "MIT", + "name": "go-libp2p-pubsub", "releaseCmd": "git commit -a -m \"gx publish $VERSION\"", "version": "0.9.36" } diff --git a/pb/rpc.pb.go b/pb/rpc.pb.go index d7161a3..84a6ae2 100644 --- a/pb/rpc.pb.go +++ b/pb/rpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. // source: rpc.proto -package floodsub_pb +package pubsub_pb import proto "github.com/gogo/protobuf/proto" import fmt "fmt" @@ -56,7 +56,7 @@ func (x *TopicDescriptor_AuthOpts_AuthMode) UnmarshalJSON(data []byte) error { return nil } func (TopicDescriptor_AuthOpts_AuthMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{7, 0, 0} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{7, 0, 0} } type TopicDescriptor_EncOpts_EncMode int32 @@ -95,7 +95,7 @@ func (x *TopicDescriptor_EncOpts_EncMode) UnmarshalJSON(data []byte) error { return nil } func (TopicDescriptor_EncOpts_EncMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{7, 1, 0} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{7, 1, 0} } type RPC struct { @@ -111,7 +111,7 @@ func (m *RPC) Reset() { *m = RPC{} } func (m *RPC) String() string { return proto.CompactTextString(m) } func (*RPC) ProtoMessage() {} func (*RPC) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{0} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{0} } func (m *RPC) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -173,7 +173,7 @@ func (m *RPC_SubOpts) Reset() { *m = RPC_SubOpts{} } func (m *RPC_SubOpts) String() string { return proto.CompactTextString(m) } func (*RPC_SubOpts) ProtoMessage() {} func (*RPC_SubOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{0, 0} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{0, 0} } func (m *RPC_SubOpts) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -232,7 +232,7 @@ func (m *Message) Reset() { *m = Message{} } func (m *Message) String() string { return proto.CompactTextString(m) } func (*Message) ProtoMessage() {} func (*Message) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{1} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{1} } func (m *Message) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -317,7 +317,7 @@ func (m *ControlMessage) Reset() { *m = ControlMessage{} } func (m *ControlMessage) String() string { return proto.CompactTextString(m) } func (*ControlMessage) ProtoMessage() {} func (*ControlMessage) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{2} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{2} } func (m *ControlMessage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -386,7 +386,7 @@ func (m *ControlIHave) Reset() { *m = ControlIHave{} } func (m *ControlIHave) String() string { return proto.CompactTextString(m) } func (*ControlIHave) ProtoMessage() {} func (*ControlIHave) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{3} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{3} } func (m *ControlIHave) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -440,7 +440,7 @@ func (m *ControlIWant) Reset() { *m = ControlIWant{} } func (m *ControlIWant) String() string { return proto.CompactTextString(m) } func (*ControlIWant) ProtoMessage() {} func (*ControlIWant) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{4} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{4} } func (m *ControlIWant) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -487,7 +487,7 @@ func (m *ControlGraft) Reset() { *m = ControlGraft{} } func (m *ControlGraft) String() string { return proto.CompactTextString(m) } func (*ControlGraft) ProtoMessage() {} func (*ControlGraft) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{5} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{5} } func (m *ControlGraft) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -534,7 +534,7 @@ func (m *ControlPrune) Reset() { *m = ControlPrune{} } func (m *ControlPrune) String() string { return proto.CompactTextString(m) } func (*ControlPrune) ProtoMessage() {} func (*ControlPrune) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{6} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{6} } func (m *ControlPrune) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -570,7 +570,6 @@ func (m *ControlPrune) GetTopicID() string { return "" } -// topicID = hash(topicDescriptor); (not the topic.name) type TopicDescriptor struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` Auth *TopicDescriptor_AuthOpts `protobuf:"bytes,2,opt,name=auth" json:"auth,omitempty"` @@ -584,7 +583,7 @@ func (m *TopicDescriptor) Reset() { *m = TopicDescriptor{} } func (m *TopicDescriptor) String() string { return proto.CompactTextString(m) } func (*TopicDescriptor) ProtoMessage() {} func (*TopicDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{7} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{7} } func (m *TopicDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -635,7 +634,7 @@ func (m *TopicDescriptor) GetEnc() *TopicDescriptor_EncOpts { } type TopicDescriptor_AuthOpts struct { - Mode *TopicDescriptor_AuthOpts_AuthMode `protobuf:"varint,1,opt,name=mode,enum=floodsub.pb.TopicDescriptor_AuthOpts_AuthMode" json:"mode,omitempty"` + Mode *TopicDescriptor_AuthOpts_AuthMode `protobuf:"varint,1,opt,name=mode,enum=pubsub.pb.TopicDescriptor_AuthOpts_AuthMode" json:"mode,omitempty"` Keys [][]byte `protobuf:"bytes,2,rep,name=keys" json:"keys,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -646,7 +645,7 @@ func (m *TopicDescriptor_AuthOpts) Reset() { *m = TopicDescriptor_AuthOp func (m *TopicDescriptor_AuthOpts) String() string { return proto.CompactTextString(m) } func (*TopicDescriptor_AuthOpts) ProtoMessage() {} func (*TopicDescriptor_AuthOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{7, 0} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{7, 0} } func (m *TopicDescriptor_AuthOpts) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -690,7 +689,7 @@ func (m *TopicDescriptor_AuthOpts) GetKeys() [][]byte { } type TopicDescriptor_EncOpts struct { - Mode *TopicDescriptor_EncOpts_EncMode `protobuf:"varint,1,opt,name=mode,enum=floodsub.pb.TopicDescriptor_EncOpts_EncMode" json:"mode,omitempty"` + Mode *TopicDescriptor_EncOpts_EncMode `protobuf:"varint,1,opt,name=mode,enum=pubsub.pb.TopicDescriptor_EncOpts_EncMode" json:"mode,omitempty"` KeyHashes [][]byte `protobuf:"bytes,2,rep,name=keyHashes" json:"keyHashes,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -701,7 +700,7 @@ func (m *TopicDescriptor_EncOpts) Reset() { *m = TopicDescriptor_EncOpts func (m *TopicDescriptor_EncOpts) String() string { return proto.CompactTextString(m) } func (*TopicDescriptor_EncOpts) ProtoMessage() {} func (*TopicDescriptor_EncOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_rpc_0c4744ec88cf773a, []int{7, 1} + return fileDescriptor_rpc_f0491c6c9ffa591d, []int{7, 1} } func (m *TopicDescriptor_EncOpts) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -745,19 +744,19 @@ func (m *TopicDescriptor_EncOpts) GetKeyHashes() [][]byte { } func init() { - proto.RegisterType((*RPC)(nil), "floodsub.pb.RPC") - proto.RegisterType((*RPC_SubOpts)(nil), "floodsub.pb.RPC.SubOpts") - proto.RegisterType((*Message)(nil), "floodsub.pb.Message") - proto.RegisterType((*ControlMessage)(nil), "floodsub.pb.ControlMessage") - proto.RegisterType((*ControlIHave)(nil), "floodsub.pb.ControlIHave") - proto.RegisterType((*ControlIWant)(nil), "floodsub.pb.ControlIWant") - proto.RegisterType((*ControlGraft)(nil), "floodsub.pb.ControlGraft") - proto.RegisterType((*ControlPrune)(nil), "floodsub.pb.ControlPrune") - proto.RegisterType((*TopicDescriptor)(nil), "floodsub.pb.TopicDescriptor") - proto.RegisterType((*TopicDescriptor_AuthOpts)(nil), "floodsub.pb.TopicDescriptor.AuthOpts") - proto.RegisterType((*TopicDescriptor_EncOpts)(nil), "floodsub.pb.TopicDescriptor.EncOpts") - proto.RegisterEnum("floodsub.pb.TopicDescriptor_AuthOpts_AuthMode", TopicDescriptor_AuthOpts_AuthMode_name, TopicDescriptor_AuthOpts_AuthMode_value) - proto.RegisterEnum("floodsub.pb.TopicDescriptor_EncOpts_EncMode", TopicDescriptor_EncOpts_EncMode_name, TopicDescriptor_EncOpts_EncMode_value) + proto.RegisterType((*RPC)(nil), "pubsub.pb.RPC") + proto.RegisterType((*RPC_SubOpts)(nil), "pubsub.pb.RPC.SubOpts") + proto.RegisterType((*Message)(nil), "pubsub.pb.Message") + proto.RegisterType((*ControlMessage)(nil), "pubsub.pb.ControlMessage") + proto.RegisterType((*ControlIHave)(nil), "pubsub.pb.ControlIHave") + proto.RegisterType((*ControlIWant)(nil), "pubsub.pb.ControlIWant") + proto.RegisterType((*ControlGraft)(nil), "pubsub.pb.ControlGraft") + proto.RegisterType((*ControlPrune)(nil), "pubsub.pb.ControlPrune") + proto.RegisterType((*TopicDescriptor)(nil), "pubsub.pb.TopicDescriptor") + proto.RegisterType((*TopicDescriptor_AuthOpts)(nil), "pubsub.pb.TopicDescriptor.AuthOpts") + proto.RegisterType((*TopicDescriptor_EncOpts)(nil), "pubsub.pb.TopicDescriptor.EncOpts") + proto.RegisterEnum("pubsub.pb.TopicDescriptor_AuthOpts_AuthMode", TopicDescriptor_AuthOpts_AuthMode_name, TopicDescriptor_AuthOpts_AuthMode_value) + proto.RegisterEnum("pubsub.pb.TopicDescriptor_EncOpts_EncMode", TopicDescriptor_EncOpts_EncMode_name, TopicDescriptor_EncOpts_EncMode_value) } func (m *RPC) Marshal() (dAtA []byte, err error) { size := m.Size() @@ -2943,46 +2942,46 @@ var ( ErrIntOverflowRpc = fmt.Errorf("proto: integer overflow") ) -func init() { proto.RegisterFile("rpc.proto", fileDescriptor_rpc_0c4744ec88cf773a) } +func init() { proto.RegisterFile("rpc.proto", fileDescriptor_rpc_f0491c6c9ffa591d) } -var fileDescriptor_rpc_0c4744ec88cf773a = []byte{ - // 602 bytes of a gzipped FileDescriptorProto +var fileDescriptor_rpc_f0491c6c9ffa591d = []byte{ + // 599 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0xc7, 0xd9, 0x38, 0xc5, 0xf1, 0xc4, 0x2d, 0xd1, 0xaa, 0x07, 0x13, 0xaa, 0x28, 0xb2, 0x00, - 0x59, 0x02, 0x19, 0x29, 0x12, 0x48, 0x5c, 0x10, 0x6d, 0x13, 0x91, 0x08, 0xf5, 0x43, 0xdb, 0x4a, - 0x15, 0xc7, 0xb5, 0xb3, 0x6d, 0xac, 0x36, 0x5e, 0x63, 0xaf, 0x8b, 0xfa, 0x0a, 0x5c, 0x91, 0x78, - 0x1c, 0xce, 0x1c, 0x39, 0xf0, 0x00, 0xa8, 0x2f, 0xc0, 0x2b, 0xa0, 0x1d, 0x3b, 0x1f, 0x2e, 0x4d, - 0xd5, 0x53, 0x66, 0x27, 0xff, 0xdf, 0xce, 0x7f, 0x66, 0xd6, 0x60, 0xa5, 0x49, 0xe8, 0x27, 0xa9, - 0x54, 0x92, 0x36, 0x4f, 0x2f, 0xa4, 0x1c, 0x67, 0x79, 0xe0, 0x27, 0x81, 0xfb, 0x97, 0x80, 0xc1, - 0x0e, 0x77, 0xe9, 0x3b, 0x58, 0xcf, 0xf2, 0x20, 0x0b, 0xd3, 0x28, 0x51, 0x91, 0x8c, 0x33, 0x87, - 0x74, 0x0d, 0xaf, 0xd9, 0x73, 0xfc, 0x25, 0xb1, 0xcf, 0x0e, 0x77, 0xfd, 0xa3, 0x3c, 0x38, 0x48, - 0x54, 0xc6, 0xaa, 0x72, 0xea, 0x83, 0x99, 0xe4, 0xc1, 0x45, 0x94, 0x4d, 0x9c, 0x1a, 0x92, 0x9b, - 0x15, 0x72, 0x4f, 0x64, 0x19, 0x3f, 0x13, 0x6c, 0x26, 0xa2, 0xaf, 0xc1, 0x0c, 0x65, 0xac, 0x52, - 0x79, 0xe1, 0x18, 0x5d, 0xe2, 0x35, 0x7b, 0x4f, 0x2a, 0xfa, 0xdd, 0xe2, 0xbf, 0x39, 0x56, 0x6a, - 0xdb, 0xdb, 0x60, 0x96, 0x06, 0xe8, 0x16, 0x58, 0xa5, 0x85, 0x40, 0x38, 0xa4, 0x4b, 0xbc, 0x06, - 0x5b, 0x24, 0xa8, 0x03, 0xa6, 0x92, 0x49, 0x14, 0x46, 0x63, 0xa7, 0xd6, 0x25, 0x9e, 0xc5, 0x66, - 0x47, 0xf7, 0x1b, 0x01, 0xb3, 0xbc, 0x97, 0x52, 0xa8, 0x9f, 0xa6, 0x72, 0x8a, 0xb8, 0xcd, 0x30, - 0xd6, 0xb9, 0x31, 0x57, 0x1c, 0x31, 0x9b, 0x61, 0x4c, 0x37, 0x61, 0x2d, 0x13, 0x9f, 0x63, 0x89, - 0x5e, 0x6d, 0x56, 0x1c, 0x68, 0x1b, 0x1a, 0x78, 0xe9, 0xa8, 0x9f, 0x39, 0xf5, 0xae, 0xe1, 0x59, - 0x6c, 0x7e, 0x46, 0x77, 0xd1, 0x59, 0xcc, 0x55, 0x9e, 0x0a, 0x67, 0x0d, 0xa9, 0x45, 0x82, 0xb6, - 0xc0, 0x38, 0x17, 0x57, 0xce, 0x43, 0xcc, 0xeb, 0xd0, 0xfd, 0x4d, 0x60, 0xa3, 0xda, 0x34, 0x7d, - 0x05, 0x6b, 0xd1, 0x84, 0x5f, 0x8a, 0x72, 0x15, 0x8f, 0x6f, 0x1b, 0xd0, 0x68, 0xc8, 0x2f, 0x05, - 0x2b, 0x74, 0x08, 0x7c, 0xe1, 0xb1, 0x2a, 0x37, 0x70, 0x3b, 0x70, 0xc2, 0x63, 0xc5, 0x0a, 0x9d, - 0x06, 0xce, 0x52, 0x7e, 0xaa, 0x1c, 0x63, 0x35, 0xf0, 0x41, 0x0b, 0x58, 0xa1, 0xd3, 0x40, 0x92, - 0xe6, 0xb1, 0xc0, 0x76, 0x57, 0x00, 0x87, 0x5a, 0xc0, 0x0a, 0x9d, 0x3b, 0x04, 0x7b, 0xd9, 0xe9, - 0x7c, 0x2d, 0xa3, 0x3e, 0xce, 0x7c, 0xb6, 0x96, 0x51, 0x9f, 0x76, 0x00, 0xa6, 0x45, 0xe3, 0x7a, - 0x9c, 0x35, 0x1c, 0xe7, 0x52, 0xc6, 0xf5, 0x17, 0x37, 0xe9, 0x16, 0x6e, 0xe8, 0xc9, 0x7f, 0x7a, - 0x6f, 0xae, 0xc7, 0x0e, 0x56, 0x57, 0x5e, 0x52, 0xa2, 0xf5, 0x3b, 0x94, 0x3f, 0x0c, 0x78, 0x74, - 0xac, 0xe3, 0xbe, 0x28, 0x9e, 0xbe, 0x4c, 0xf5, 0x73, 0x89, 0xf9, 0x54, 0x94, 0x52, 0x8c, 0xe9, - 0x5b, 0xa8, 0xf3, 0x5c, 0x4d, 0xf0, 0x09, 0x35, 0x7b, 0xcf, 0x2a, 0x53, 0xba, 0xc1, 0xfb, 0xdb, - 0xb9, 0x9a, 0xe0, 0x07, 0x85, 0x08, 0x7d, 0x03, 0x86, 0x88, 0xc3, 0xf2, 0x9b, 0x78, 0x7a, 0x27, - 0x39, 0x88, 0x43, 0x04, 0x35, 0xd0, 0xfe, 0x4a, 0xa0, 0x31, 0xbb, 0x8a, 0xee, 0x40, 0x7d, 0x2a, - 0xc7, 0x85, 0xa7, 0x8d, 0x9e, 0x7f, 0xaf, 0xfa, 0x18, 0xec, 0xc9, 0xb1, 0x60, 0xc8, 0xea, 0xbe, - 0xce, 0xc5, 0x55, 0xb1, 0x09, 0x9b, 0x61, 0xec, 0x3e, 0x2f, 0x6a, 0x68, 0x15, 0x6d, 0x40, 0x7d, - 0xff, 0x60, 0x7f, 0xd0, 0x7a, 0x40, 0x4d, 0x30, 0x3e, 0x0e, 0x3e, 0xb5, 0x88, 0x0e, 0x4e, 0x0e, - 0x8e, 0x5b, 0xb5, 0xf6, 0x77, 0x02, 0x66, 0xe9, 0x8e, 0xbe, 0xaf, 0x78, 0x79, 0x79, 0x9f, 0x8e, - 0xf4, 0xef, 0x92, 0x93, 0x2d, 0xb0, 0xce, 0xc5, 0xd5, 0x90, 0x67, 0x13, 0x31, 0xb3, 0xb3, 0x48, - 0xb8, 0x2f, 0xb0, 0xd4, 0x0d, 0x4b, 0xeb, 0x60, 0x1d, 0x0d, 0xb7, 0xd9, 0xa0, 0x5f, 0x35, 0xb6, - 0x63, 0xff, 0xbc, 0xee, 0x90, 0x5f, 0xd7, 0x1d, 0xf2, 0xe7, 0xba, 0x43, 0xfe, 0x05, 0x00, 0x00, - 0xff, 0xff, 0x6e, 0x39, 0x18, 0xab, 0x14, 0x05, 0x00, 0x00, + 0x10, 0xc7, 0xd9, 0x38, 0xc5, 0xf1, 0xd4, 0x2d, 0xd1, 0x0a, 0x81, 0x89, 0xaa, 0x28, 0x32, 0x12, + 0xb2, 0xa0, 0xf8, 0x10, 0x90, 0xb8, 0x20, 0x44, 0x69, 0x22, 0x12, 0xa1, 0x7e, 0x68, 0x5b, 0xa9, + 0xe2, 0xb8, 0x76, 0xb6, 0x89, 0x95, 0xc6, 0x36, 0xf6, 0xba, 0x28, 0x6f, 0xc0, 0x1d, 0x9e, 0x85, + 0x67, 0xe0, 0xc0, 0x81, 0x47, 0x40, 0xb9, 0xf1, 0x16, 0x68, 0xc7, 0x4e, 0xe2, 0xa4, 0x1f, 0x70, + 0xf2, 0xec, 0xec, 0xef, 0xbf, 0xf3, 0x9f, 0xd9, 0x35, 0x18, 0x49, 0xec, 0xbb, 0x71, 0x12, 0xc9, + 0x88, 0x1a, 0x71, 0xe6, 0xa5, 0x99, 0xe7, 0xc6, 0x9e, 0xfd, 0x87, 0x80, 0xc6, 0x8e, 0xf7, 0xe9, + 0x6b, 0xd8, 0x4a, 0x33, 0x2f, 0xf5, 0x93, 0x20, 0x96, 0x41, 0x14, 0xa6, 0x16, 0x69, 0x69, 0xce, + 0x66, 0xfb, 0x81, 0xbb, 0x40, 0x5d, 0x76, 0xbc, 0xef, 0x9e, 0x64, 0xde, 0x51, 0x2c, 0x53, 0xb6, + 0x0a, 0xd3, 0x5d, 0xd0, 0xe3, 0xcc, 0xbb, 0x08, 0xd2, 0x91, 0x55, 0x41, 0x1d, 0x2d, 0xe9, 0x0e, + 0x44, 0x9a, 0xf2, 0xa1, 0x60, 0x73, 0x84, 0xbe, 0x00, 0xdd, 0x8f, 0x42, 0x99, 0x44, 0x17, 0x96, + 0xd6, 0x22, 0xce, 0x66, 0xfb, 0x51, 0x89, 0xde, 0xcf, 0x77, 0x16, 0xa2, 0x82, 0x6c, 0xec, 0x81, + 0x5e, 0x14, 0xa7, 0x3b, 0x60, 0x14, 0xe5, 0x3d, 0x61, 0x91, 0x16, 0x71, 0x6a, 0x6c, 0x99, 0xa0, + 0x16, 0xe8, 0x32, 0x8a, 0x03, 0x3f, 0x18, 0x58, 0x95, 0x16, 0x71, 0x0c, 0x36, 0x5f, 0xda, 0x5f, + 0x09, 0xe8, 0xc5, 0xb9, 0x94, 0x42, 0xf5, 0x3c, 0x89, 0x26, 0x28, 0x37, 0x19, 0xc6, 0x2a, 0x37, + 0xe0, 0x92, 0xa3, 0xcc, 0x64, 0x18, 0xd3, 0xfb, 0xb0, 0x91, 0x8a, 0x4f, 0x61, 0x84, 0x4e, 0x4d, + 0x96, 0x2f, 0x68, 0x03, 0x6a, 0x78, 0x68, 0xbf, 0x93, 0x5a, 0xd5, 0x96, 0xe6, 0x18, 0x6c, 0xb1, + 0x46, 0x77, 0xc1, 0x30, 0xe4, 0x32, 0x4b, 0x84, 0xb5, 0x81, 0xaa, 0x65, 0x82, 0xd6, 0x41, 0x1b, + 0x8b, 0xa9, 0x75, 0x17, 0xf3, 0x2a, 0xb4, 0x7f, 0x12, 0xd8, 0x5e, 0x6d, 0x9a, 0x3e, 0x87, 0x8d, + 0x60, 0xc4, 0x2f, 0x45, 0x71, 0x09, 0x0f, 0xaf, 0x8e, 0xa7, 0xdf, 0xe3, 0x97, 0x82, 0xe5, 0x14, + 0xe2, 0x9f, 0x79, 0x28, 0x8b, 0xd9, 0x5f, 0x87, 0x9f, 0xf1, 0x50, 0xb2, 0x9c, 0x52, 0xf8, 0x30, + 0xe1, 0xe7, 0xd2, 0xd2, 0x6e, 0xc2, 0xdf, 0xab, 0x6d, 0x96, 0x53, 0x0a, 0x8f, 0x93, 0x2c, 0x14, + 0xd8, 0xe8, 0xb5, 0xf8, 0xb1, 0xda, 0x66, 0x39, 0x65, 0xf7, 0xc0, 0x2c, 0x7b, 0x5c, 0x5c, 0x47, + 0xbf, 0x83, 0xb3, 0x9e, 0x5f, 0x47, 0xbf, 0x43, 0x9b, 0x00, 0x93, 0xbc, 0x61, 0x35, 0xc6, 0x0a, + 0x8e, 0xb1, 0x94, 0xb1, 0xdd, 0xe5, 0x49, 0xca, 0xfe, 0x1a, 0x4f, 0xae, 0xf0, 0xce, 0x82, 0x47, + 0xff, 0x37, 0x57, 0x2e, 0x91, 0x68, 0xfd, 0x16, 0xf2, 0xbb, 0x06, 0xf7, 0x4e, 0x55, 0xdc, 0x11, + 0xf9, 0x73, 0x8f, 0x12, 0xf5, 0x4c, 0x42, 0x3e, 0x11, 0x05, 0x8a, 0x31, 0x7d, 0x05, 0x55, 0x9e, + 0xc9, 0x11, 0x3e, 0x9d, 0xcd, 0xf6, 0xe3, 0xd2, 0x8c, 0xd6, 0xd4, 0xee, 0x5e, 0x26, 0x47, 0xf8, + 0x0b, 0xa1, 0x80, 0xbe, 0x04, 0x4d, 0x84, 0x7e, 0xf1, 0x1f, 0xd8, 0xb7, 0xe8, 0xba, 0xa1, 0x8f, + 0x32, 0x85, 0x37, 0xbe, 0x10, 0xa8, 0xcd, 0x0f, 0xa2, 0x6f, 0xa1, 0x3a, 0x89, 0x06, 0xb9, 0x9f, + 0xed, 0xf6, 0xee, 0x7f, 0xd4, 0xc6, 0xe0, 0x20, 0x1a, 0x08, 0x86, 0x4a, 0xd5, 0xd1, 0x58, 0x4c, + 0xf3, 0x3b, 0x30, 0x19, 0xc6, 0xf6, 0x93, 0xbc, 0x82, 0xa2, 0x68, 0x0d, 0xaa, 0x87, 0x47, 0x87, + 0xdd, 0xfa, 0x1d, 0xaa, 0x83, 0xf6, 0xa1, 0xfb, 0xb1, 0x4e, 0x54, 0x70, 0x76, 0x74, 0x5a, 0xaf, + 0x34, 0xbe, 0x11, 0xd0, 0x0b, 0x6f, 0xf4, 0xcd, 0x8a, 0x93, 0xa7, 0xff, 0xee, 0x46, 0x7d, 0x4b, + 0x3e, 0x76, 0xc0, 0x18, 0x8b, 0x69, 0x8f, 0xa7, 0x23, 0x31, 0x37, 0xb3, 0x4c, 0xd8, 0xcf, 0xb0, + 0xd0, 0x9a, 0xa1, 0x2d, 0x30, 0x4e, 0x7a, 0x7b, 0xac, 0xdb, 0x59, 0xb5, 0xf5, 0xce, 0xfc, 0x31, + 0x6b, 0x92, 0x5f, 0xb3, 0x26, 0xf9, 0x3d, 0x6b, 0x92, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xf8, + 0xb0, 0xae, 0x4e, 0xfc, 0x04, 0x00, 0x00, } diff --git a/pb/rpc.proto b/pb/rpc.proto index e602b88..4a05828 100644 --- a/pb/rpc.proto +++ b/pb/rpc.proto @@ -1,6 +1,6 @@ syntax = "proto2"; -package floodsub.pb; +package pubsub.pb; message RPC { repeated SubOpts subscriptions = 1; diff --git a/pubsub.go b/pubsub.go index 0300cab..2c9137a 100644 --- a/pubsub.go +++ b/pubsub.go @@ -1,4 +1,4 @@ -package floodsub +package pubsub import ( "context" @@ -8,7 +8,7 @@ import ( "sync/atomic" "time" - pb "github.com/libp2p/go-floodsub/pb" + pb "github.com/libp2p/go-libp2p-pubsub/pb" logging "github.com/ipfs/go-log" crypto "github.com/libp2p/go-libp2p-crypto" diff --git a/randomsub.go b/randomsub.go index 0ba2a85..b4ccbaf 100644 --- a/randomsub.go +++ b/randomsub.go @@ -1,9 +1,9 @@ -package floodsub +package pubsub import ( "context" - pb "github.com/libp2p/go-floodsub/pb" + pb "github.com/libp2p/go-libp2p-pubsub/pb" host "github.com/libp2p/go-libp2p-host" peer "github.com/libp2p/go-libp2p-peer" diff --git a/sign.go b/sign.go index ee847ea..056c96b 100644 --- a/sign.go +++ b/sign.go @@ -1,9 +1,9 @@ -package floodsub +package pubsub import ( "fmt" - pb "github.com/libp2p/go-floodsub/pb" + pb "github.com/libp2p/go-libp2p-pubsub/pb" crypto "github.com/libp2p/go-libp2p-crypto" peer "github.com/libp2p/go-libp2p-peer" diff --git a/sign_test.go b/sign_test.go index d12cdca..4aa6045 100644 --- a/sign_test.go +++ b/sign_test.go @@ -1,9 +1,9 @@ -package floodsub +package pubsub import ( "testing" - pb "github.com/libp2p/go-floodsub/pb" + pb "github.com/libp2p/go-libp2p-pubsub/pb" crypto "github.com/libp2p/go-libp2p-crypto" peer "github.com/libp2p/go-libp2p-peer" diff --git a/subscription.go b/subscription.go index d6e930c..66a9e51 100644 --- a/subscription.go +++ b/subscription.go @@ -1,4 +1,4 @@ -package floodsub +package pubsub import ( "context"