Skip to content

Commit dbc7151

Browse files
authored
Merge pull request #84 from dims/switch-name-from-docker-to-moby
2 parents 18f9c86 + bf11281 commit dbc7151

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Spdystream maintainers file
22
#
3-
# This file describes who runs the docker/spdystream project and how.
3+
# This file describes who runs the moby/spdystream project and how.
44
# This is a living document - if you see something out of date or missing, speak up!
55
#
66
# It is structured to be consumable by both humans and programs.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ package main
1111

1212
import (
1313
"fmt"
14-
"github.com/docker/spdystream"
14+
"github.com/moby/spdystream"
1515
"net"
1616
"net/http"
1717
)
@@ -49,7 +49,7 @@ Server example (mirroring server without auth)
4949
package main
5050

5151
import (
52-
"github.com/docker/spdystream"
52+
"github.com/moby/spdystream"
5353
"net"
5454
)
5555

connection.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"sync"
2626
"time"
2727

28-
"github.com/docker/spdystream/spdy"
28+
"github.com/moby/spdystream/spdy"
2929
)
3030

3131
var (
@@ -117,7 +117,7 @@ Loop:
117117
// attempts to grab the write lock that Write() already has, causing a
118118
// deadlock.
119119
//
120-
// See https://github.com/docker/spdystream/issues/49 for more details.
120+
// See https://github.com/moby/spdystream/issues/49 for more details.
121121
go func() {
122122
for range resetChan {
123123
}
@@ -216,7 +216,7 @@ type Connection struct {
216216
shutdownChan chan error
217217
hasShutdown bool
218218

219-
// for testing https://github.com/docker/spdystream/pull/56
219+
// for testing https://github.com/moby/spdystream/pull/56
220220
dataFrameHandler func(*spdy.DataFrame) error
221221
}
222222

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/docker/spdystream
1+
module github.com/moby/spdystream
22

33
go 1.13
44

priority.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"container/heap"
2121
"sync"
2222

23-
"github.com/docker/spdystream/spdy"
23+
"github.com/moby/spdystream/spdy"
2424
)
2525

2626
type prioritizedFrame struct {

priority_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"testing"
2222
"time"
2323

24-
"github.com/docker/spdystream/spdy"
24+
"github.com/moby/spdystream/spdy"
2525
)
2626

2727
func TestPriorityQueueOrdering(t *testing.T) {

spdy_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"testing"
3030
"time"
3131

32-
"github.com/docker/spdystream/spdy"
32+
"github.com/moby/spdystream/spdy"
3333
)
3434

3535
func TestSpdyStreams(t *testing.T) {

stream.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"sync"
2626
"time"
2727

28-
"github.com/docker/spdystream/spdy"
28+
"github.com/moby/spdystream/spdy"
2929
)
3030

3131
var (

ws/ws_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"strings"
2626
"testing"
2727

28-
"github.com/docker/spdystream"
28+
"github.com/moby/spdystream"
2929
"github.com/gorilla/websocket"
3030
)
3131

0 commit comments

Comments
 (0)