Skip to content

Commit

Permalink
Merge pull request #84 from dims/switch-name-from-docker-to-moby
Browse files Browse the repository at this point in the history
  • Loading branch information
dmcgowan authored Jan 28, 2021
2 parents 18f9c86 + bf11281 commit dbc7151
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion MAINTAINERS
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Spdystream maintainers file
#
# This file describes who runs the docker/spdystream project and how.
# This file describes who runs the moby/spdystream project and how.
# This is a living document - if you see something out of date or missing, speak up!
#
# It is structured to be consumable by both humans and programs.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package main

import (
"fmt"
"github.com/docker/spdystream"
"github.com/moby/spdystream"
"net"
"net/http"
)
Expand Down Expand Up @@ -49,7 +49,7 @@ Server example (mirroring server without auth)
package main

import (
"github.com/docker/spdystream"
"github.com/moby/spdystream"
"net"
)

Expand Down
6 changes: 3 additions & 3 deletions connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"sync"
"time"

"github.com/docker/spdystream/spdy"
"github.com/moby/spdystream/spdy"
)

var (
Expand Down Expand Up @@ -117,7 +117,7 @@ Loop:
// attempts to grab the write lock that Write() already has, causing a
// deadlock.
//
// See https:/docker/spdystream/issues/49 for more details.
// See https:/moby/spdystream/issues/49 for more details.
go func() {
for range resetChan {
}
Expand Down Expand Up @@ -216,7 +216,7 @@ type Connection struct {
shutdownChan chan error
hasShutdown bool

// for testing https:/docker/spdystream/pull/56
// for testing https:/moby/spdystream/pull/56
dataFrameHandler func(*spdy.DataFrame) error
}

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/docker/spdystream
module github.com/moby/spdystream

go 1.13

Expand Down
2 changes: 1 addition & 1 deletion priority.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"container/heap"
"sync"

"github.com/docker/spdystream/spdy"
"github.com/moby/spdystream/spdy"
)

type prioritizedFrame struct {
Expand Down
2 changes: 1 addition & 1 deletion priority_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"testing"
"time"

"github.com/docker/spdystream/spdy"
"github.com/moby/spdystream/spdy"
)

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

"github.com/docker/spdystream/spdy"
"github.com/moby/spdystream/spdy"
)

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

"github.com/docker/spdystream/spdy"
"github.com/moby/spdystream/spdy"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion ws/ws_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"strings"
"testing"

"github.com/docker/spdystream"
"github.com/moby/spdystream"
"github.com/gorilla/websocket"
)

Expand Down

0 comments on commit dbc7151

Please sign in to comment.