Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bond/bond_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync/atomic"
"time"

protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"github.com/libp2p/go-libp2p/core/crypto"
"github.com/libp2p/go-libp2p/core/host"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/martonp/tatanka-mesh/bond"
"github.com/bisoncraft/mesh/bond"

protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
ma "github.com/multiformats/go-multiaddr"
)

Expand Down
2 changes: 1 addition & 1 deletion client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

"github.com/decred/slog"
"github.com/libp2p/go-libp2p/core/peer"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
)

type relayMessageParams struct {
Expand Down
2 changes: 1 addition & 1 deletion client/harness_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (

"github.com/decred/slog"
"github.com/libp2p/go-libp2p/core/crypto"
"github.com/martonp/tatanka-mesh/bond"
"github.com/bisoncraft/mesh/bond"
)

func TestMain(m *testing.M) {
Expand Down
8 changes: 4 additions & 4 deletions client/mesh_connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
"github.com/libp2p/go-libp2p/core/host"
"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/martonp/tatanka-mesh/bond"
"github.com/martonp/tatanka-mesh/codec"
"github.com/martonp/tatanka-mesh/protocols"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
"github.com/bisoncraft/mesh/bond"
"github.com/bisoncraft/mesh/codec"
"github.com/bisoncraft/mesh/protocols"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
ma "github.com/multiformats/go-multiaddr"
"google.golang.org/protobuf/proto"
)
Expand Down
8 changes: 4 additions & 4 deletions client/mesh_connection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ import (
"github.com/libp2p/go-libp2p/core/host"
"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/martonp/tatanka-mesh/bond"
"github.com/martonp/tatanka-mesh/codec"
"github.com/martonp/tatanka-mesh/protocols"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
"github.com/bisoncraft/mesh/bond"
"github.com/bisoncraft/mesh/codec"
"github.com/bisoncraft/mesh/protocols"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
ma "github.com/multiformats/go-multiaddr"
"google.golang.org/protobuf/proto"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/tatanka/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/decred/slog"
"github.com/jessevdk/go-flags"
"github.com/jrick/logrotate/rotator"
"github.com/martonp/tatanka-mesh/tatanka"
"github.com/bisoncraft/mesh/tatanka"
)

var log slog.Logger
Expand Down
2 changes: 1 addition & 1 deletion cmd/tatankactl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

"github.com/gorilla/websocket"
"github.com/jessevdk/go-flags"
"github.com/martonp/tatanka-mesh/tatanka/admin"
"github.com/bisoncraft/mesh/tatanka/admin"
)

// Command definitions
Expand Down
4 changes: 2 additions & 2 deletions cmd/testclient/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"github.com/jessevdk/go-flags"
"github.com/jrick/logrotate/rotator"
"github.com/libp2p/go-libp2p/core/crypto"
"github.com/martonp/tatanka-mesh/bond"
"github.com/martonp/tatanka-mesh/testing/client"
"github.com/bisoncraft/mesh/bond"
"github.com/bisoncraft/mesh/testing/client"
)

// bondParamsFlag wraps bond.BondParams to implement the flag.Value interface.
Expand Down
4 changes: 2 additions & 2 deletions codec/codec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import (
"github.com/libp2p/go-libp2p/core/host"
"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/martonp/tatanka-mesh/protocols"
"github.com/bisoncraft/mesh/protocols"
"google.golang.org/protobuf/proto"

protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
ma "github.com/multiformats/go-multiaddr"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/martonp/tatanka-mesh
module github.com/bisoncraft/mesh

go 1.24.9

Expand Down
2 changes: 1 addition & 1 deletion oracle/diviner.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/decred/slog"

"github.com/martonp/tatanka-mesh/tatanka/pb"
"github.com/bisoncraft/mesh/tatanka/pb"
)

// fetcher returns either a list of price updates or a list of fee rate updates.
Expand Down
2 changes: 1 addition & 1 deletion oracle/diviner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

"github.com/decred/slog"

"github.com/martonp/tatanka-mesh/tatanka/pb"
"github.com/bisoncraft/mesh/tatanka/pb"
)

func TestDivinerFetchUpdates(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion oracle/oracle.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/decred/slog"
"github.com/martonp/tatanka-mesh/tatanka/pb"
"github.com/bisoncraft/mesh/tatanka/pb"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion oracle/oracle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"time"

"github.com/decred/slog"
"github.com/martonp/tatanka-mesh/tatanka/pb"
"github.com/bisoncraft/mesh/tatanka/pb"
)


Expand Down
2 changes: 1 addition & 1 deletion protocols/pb/protocols.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion protocols/pb/protocols.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ syntax = "proto3";

package pb;

option go_package = "github.com/martonp/tatanka-mesh/protocols/pb";
option go_package = "github.com/bisoncraft/mesh/protocols/pb";

message Response {
oneof response {
Expand Down
2 changes: 1 addition & 1 deletion tatanka/bond_storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"time"

"github.com/libp2p/go-libp2p/core/peer"
"github.com/martonp/tatanka-mesh/bond"
"github.com/bisoncraft/mesh/bond"
)

type bondStorage interface {
Expand Down
2 changes: 1 addition & 1 deletion tatanka/bond_storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"time"

"github.com/libp2p/go-libp2p/core/peer"
"github.com/martonp/tatanka-mesh/bond"
"github.com/bisoncraft/mesh/bond"
)

func TestMemoryBondStorage(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions tatanka/gossipsub.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
pubsub "github.com/libp2p/go-libp2p-pubsub"
"github.com/libp2p/go-libp2p/core/host"
"github.com/libp2p/go-libp2p/core/peer"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
pb "github.com/martonp/tatanka-mesh/tatanka/pb"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
pb "github.com/bisoncraft/mesh/tatanka/pb"
"golang.org/x/sync/errgroup"
"google.golang.org/protobuf/proto"
)
Expand Down
2 changes: 1 addition & 1 deletion tatanka/gossipsub_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/libp2p/go-libp2p/core/crypto"
"github.com/libp2p/go-libp2p/core/peer"
pb "github.com/martonp/tatanka-mesh/tatanka/pb"
pb "github.com/bisoncraft/mesh/tatanka/pb"
)

func TestClientConnectionUpdateRoundTrip(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion tatanka/handler_permissions.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/protocol"
"github.com/martonp/tatanka-mesh/codec"
"github.com/bisoncraft/mesh/codec"
)

var errUnauthorized = errors.New("unauthorized")
Expand Down
6 changes: 3 additions & 3 deletions tatanka/handler_permissions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (

"github.com/libp2p/go-libp2p/core/peer"
mocknet "github.com/libp2p/go-libp2p/p2p/net/mock"
"github.com/martonp/tatanka-mesh/codec"
"github.com/martonp/tatanka-mesh/protocols"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
"github.com/bisoncraft/mesh/codec"
"github.com/bisoncraft/mesh/protocols"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
)

// TestPushPermissions tests the permissions for the push protocol.
Expand Down
12 changes: 6 additions & 6 deletions tatanka/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import (

"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/martonp/tatanka-mesh/bond"
"github.com/martonp/tatanka-mesh/codec"
"github.com/martonp/tatanka-mesh/oracle"
"github.com/martonp/tatanka-mesh/protocols"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
"github.com/martonp/tatanka-mesh/tatanka/pb"
"github.com/bisoncraft/mesh/bond"
"github.com/bisoncraft/mesh/codec"
"github.com/bisoncraft/mesh/oracle"
"github.com/bisoncraft/mesh/protocols"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
"github.com/bisoncraft/mesh/tatanka/pb"
ma "github.com/multiformats/go-multiaddr"
"google.golang.org/protobuf/proto"
)
Expand Down
2 changes: 1 addition & 1 deletion tatanka/handlers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/libp2p/go-libp2p/core/crypto"
"github.com/libp2p/go-libp2p/core/peer"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
ma "github.com/multiformats/go-multiaddr"
)

Expand Down
4 changes: 2 additions & 2 deletions tatanka/mesh_connection_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/libp2p/go-libp2p/core/peerstore"
"github.com/martonp/tatanka-mesh/codec"
pb "github.com/martonp/tatanka-mesh/tatanka/pb"
"github.com/bisoncraft/mesh/codec"
pb "github.com/bisoncraft/mesh/tatanka/pb"
ma "github.com/multiformats/go-multiaddr"
)

Expand Down
2 changes: 1 addition & 1 deletion tatanka/pb/messages.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tatanka/pb/messages.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ syntax = "proto3";

package pb;

option go_package = "github.com/martonp/tatanka-mesh/tatanka/pb";
option go_package = "github.com/bisoncraft/mesh/tatanka/pb";

// ClientConnectionMsg is used internally by tatanka nodes to share client connection information.
message ClientConnectionMsg {
Expand Down
4 changes: 2 additions & 2 deletions tatanka/push_stream_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/decred/slog"
"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/martonp/tatanka-mesh/codec"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
"github.com/bisoncraft/mesh/codec"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
)

const (
Expand Down
8 changes: 4 additions & 4 deletions tatanka/tatanka.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ import (
"github.com/libp2p/go-libp2p/core/crypto"
"github.com/libp2p/go-libp2p/core/host"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/martonp/tatanka-mesh/oracle"
"github.com/martonp/tatanka-mesh/protocols"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
"github.com/martonp/tatanka-mesh/tatanka/admin"
"github.com/bisoncraft/mesh/oracle"
"github.com/bisoncraft/mesh/protocols"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
"github.com/bisoncraft/mesh/tatanka/admin"
"github.com/prometheus/client_golang/prometheus/promhttp"
)

Expand Down
12 changes: 6 additions & 6 deletions tatanka/tatanka_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ import (
"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"
mocknet "github.com/libp2p/go-libp2p/p2p/net/mock"
"github.com/martonp/tatanka-mesh/bond"
"github.com/martonp/tatanka-mesh/codec"
"github.com/martonp/tatanka-mesh/oracle"
"github.com/martonp/tatanka-mesh/protocols"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
"github.com/martonp/tatanka-mesh/tatanka/pb"
"github.com/bisoncraft/mesh/bond"
"github.com/bisoncraft/mesh/codec"
"github.com/bisoncraft/mesh/oracle"
"github.com/bisoncraft/mesh/protocols"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
"github.com/bisoncraft/mesh/tatanka/pb"
"google.golang.org/protobuf/proto"
)

Expand Down
8 changes: 4 additions & 4 deletions testing/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import (
"github.com/go-chi/chi/v5"
"github.com/go-chi/cors"
"github.com/libp2p/go-libp2p/core/crypto"
"github.com/martonp/tatanka-mesh/bond"
tmc "github.com/martonp/tatanka-mesh/client"
"github.com/martonp/tatanka-mesh/oracle"
protocolsPb "github.com/martonp/tatanka-mesh/protocols/pb"
"github.com/bisoncraft/mesh/bond"
tmc "github.com/bisoncraft/mesh/client"
"github.com/bisoncraft/mesh/oracle"
protocolsPb "github.com/bisoncraft/mesh/protocols/pb"
"google.golang.org/protobuf/proto"
)

Expand Down
Loading