Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 1e6ebd2

Browse files
committed
Update msgpack library to use fork with fix for interfaces and pointers
Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
1 parent 39c5a7a commit 1e6ebd2

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

inmem.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"reflect"
99
"sync"
1010

11-
"github.com/ugorji/go/codec"
11+
"github.com/dmcgowan/go/codec"
1212
)
1313

1414
func Pipe() (Receiver, Sender) {

spdy/encode.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ package spdy
33
import (
44
"encoding/binary"
55
"errors"
6-
"github.com/ugorji/go/codec"
76
"net"
87
"reflect"
98
"time"
9+
10+
"github.com/dmcgowan/go/codec"
1011
)
1112

1213
func (s *session) encodeChannel(v reflect.Value) ([]byte, error) {

spdy/session.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"strconv"
99
"sync"
1010

11+
"github.com/dmcgowan/go/codec"
1112
"github.com/docker/libchan"
1213
"github.com/docker/spdystream"
13-
"github.com/ugorji/go/codec"
1414
)
1515

1616
type direction uint8

0 commit comments

Comments
 (0)