Skip to content

Commit 8eb712b

Browse files
committed
rename go-ocf to plgd-dev
1 parent cccf24e commit 8eb712b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+246
-242
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN git clone https://github.com/udhos/update-golang.git \
55
&& cd update-golang \
66
&& ./update-golang.sh \
77
&& ln -s /usr/local/go/bin/go /usr/bin/go
8-
WORKDIR $GOPATH/src/github.com/go-ocf/cloud
8+
WORKDIR $GOPATH/src/github.com/plgd-dev/go-coap
99
COPY go.mod go.sum ./
1010
RUN go mod download
1111
COPY . .

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
[![Build Status](https://travis-ci.com/go-ocf/go-coap.svg?branch=master)](https://travis-ci.com/go-ocf/go-coap)
2-
[![codecov](https://codecov.io/gh/go-ocf/go-coap/branch/master/graph/badge.svg)](https://codecov.io/gh/go-ocf/go-coap)
3-
[![Go Report](https://goreportcard.com/badge/github.com/go-ocf/go-coap)](https://goreportcard.com/report/github.com/go-ocf/go-coap)
1+
[![Build Status](https://travis-ci.com/plgd-dev/go-coap.svg?branch=master)](https://travis-ci.com/plgd-dev/go-coap)
2+
[![codecov](https://codecov.io/gh/plgd-dev/go-coap/branch/master/graph/badge.svg)](https://codecov.io/gh/plgd-dev/go-coap)
3+
[![Go Report](https://goreportcard.com/badge/github.com/plgd-dev/go-coap)](https://goreportcard.com/report/github.com/plgd-dev/go-coap)
44
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fgo-ocf%2Fgo-coap.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fgo-ocf%2Fgo-coap?ref=badge_shield)
55
[![backer](https://opencollective.com/go-coap/backers/badge.svg)](https://opencollective.com/go-coap#backer)
66
[![sponsors](https://opencollective.com/go-coap/sponsors/badge.svg)](https://opencollective.com/go-coap#sponsors)
7-
[![contributors](https://img.shields.io/github/contributors/go-ocf/go-coap)](https://github.com/go-ocf/go-coap/graphs/contributors)
8-
[![GitHub stars](https://img.shields.io/github/stars/go-ocf/go-coap)](https://github.com/go-ocf/go-coap/stargazers)
9-
[![GitHub license](https://img.shields.io/github/license/go-ocf/go-coap)](https://github.com/go-ocf/go-coap/blob/master/LICENSE)
10-
[![GoDoc](https://godoc.org/github.com/go-ocf/go-coap?status.svg)](https://godoc.org/github.com/go-ocf/go-coap)
11-
[![Sourcegraph](https://sourcegraph.com/github.com/go-ocf/go-coap/-/badge.svg)](https://sourcegraph.com/github.com/go-ocf/go-coap?badge)
7+
[![contributors](https://img.shields.io/github/contributors/plgd-dev/go-coap)](https://github.com/plgd-dev/go-coap/graphs/contributors)
8+
[![GitHub stars](https://img.shields.io/github/stars/plgd-dev/go-coap)](https://github.com/plgd-dev/go-coap/stargazers)
9+
[![GitHub license](https://img.shields.io/github/license/plgd-dev/go-coap)](https://github.com/plgd-dev/go-coap/blob/master/LICENSE)
10+
[![GoDoc](https://godoc.org/github.com/plgd-dev/go-coap?status.svg)](https://godoc.org/github.com/plgd-dev/go-coap)
11+
[![Sourcegraph](https://sourcegraph.com/github.com/plgd-dev/go-coap/-/badge.svg)](https://sourcegraph.com/github.com/plgd-dev/go-coap?badge)
1212

1313
# Go-CoAP
1414

dtls/client.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ import (
66
"net"
77
"time"
88

9-
"github.com/go-ocf/go-coap/v2/message"
10-
"github.com/go-ocf/go-coap/v2/net/blockwise"
11-
"github.com/go-ocf/go-coap/v2/net/keepalive"
129
"github.com/pion/dtls/v2"
10+
"github.com/plgd-dev/go-coap/v2/message"
11+
"github.com/plgd-dev/go-coap/v2/net/blockwise"
12+
"github.com/plgd-dev/go-coap/v2/net/keepalive"
1313

14-
"github.com/go-ocf/go-coap/v2/message/codes"
15-
coapNet "github.com/go-ocf/go-coap/v2/net"
16-
"github.com/go-ocf/go-coap/v2/udp/client"
17-
udpMessage "github.com/go-ocf/go-coap/v2/udp/message"
18-
"github.com/go-ocf/go-coap/v2/udp/message/pool"
1914
kitSync "github.com/go-ocf/kit/sync"
15+
"github.com/plgd-dev/go-coap/v2/message/codes"
16+
coapNet "github.com/plgd-dev/go-coap/v2/net"
17+
"github.com/plgd-dev/go-coap/v2/udp/client"
18+
udpMessage "github.com/plgd-dev/go-coap/v2/udp/message"
19+
"github.com/plgd-dev/go-coap/v2/udp/message/pool"
2020
)
2121

2222
var defaultDialOptions = dialOptions{

dtls/client_test.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ import (
1111
"testing"
1212
"time"
1313

14-
"github.com/go-ocf/go-coap/v2/dtls"
15-
"github.com/go-ocf/go-coap/v2/mux"
16-
"github.com/go-ocf/go-coap/v2/udp/client"
17-
udpMessage "github.com/go-ocf/go-coap/v2/udp/message"
18-
"github.com/go-ocf/go-coap/v2/udp/message/pool"
1914
piondtls "github.com/pion/dtls/v2"
20-
21-
"github.com/go-ocf/go-coap/v2/message"
22-
"github.com/go-ocf/go-coap/v2/message/codes"
23-
coapNet "github.com/go-ocf/go-coap/v2/net"
15+
"github.com/plgd-dev/go-coap/v2/dtls"
16+
"github.com/plgd-dev/go-coap/v2/mux"
17+
"github.com/plgd-dev/go-coap/v2/udp/client"
18+
udpMessage "github.com/plgd-dev/go-coap/v2/udp/message"
19+
"github.com/plgd-dev/go-coap/v2/udp/message/pool"
20+
21+
"github.com/plgd-dev/go-coap/v2/message"
22+
"github.com/plgd-dev/go-coap/v2/message/codes"
23+
coapNet "github.com/plgd-dev/go-coap/v2/net"
2424
"github.com/stretchr/testify/assert"
2525
"github.com/stretchr/testify/require"
2626
)

dtls/example_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"log"
88
"time"
99

10-
"github.com/go-ocf/go-coap/v2/dtls"
11-
"github.com/go-ocf/go-coap/v2/net"
1210
piondtls "github.com/pion/dtls/v2"
11+
"github.com/plgd-dev/go-coap/v2/dtls"
12+
"github.com/plgd-dev/go-coap/v2/net"
1313
)
1414

1515
func ExampleGet() {

dtls/optionmux.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package dtls
22

33
import (
4-
"github.com/go-ocf/go-coap/v2/mux"
5-
"github.com/go-ocf/go-coap/v2/udp/client"
4+
"github.com/plgd-dev/go-coap/v2/mux"
5+
"github.com/plgd-dev/go-coap/v2/udp/client"
66
)
77

88
// WithMux set's multiplexer for handle requests.

dtls/options.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"time"
66

7-
"github.com/go-ocf/go-coap/v2/net/blockwise"
8-
"github.com/go-ocf/go-coap/v2/net/keepalive"
7+
"github.com/plgd-dev/go-coap/v2/net/blockwise"
8+
"github.com/plgd-dev/go-coap/v2/net/keepalive"
99
)
1010

1111
// HandlerFuncOpt handler function option.

dtls/server.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ import (
77
"sync"
88
"time"
99

10-
"github.com/go-ocf/go-coap/v2/message"
11-
"github.com/go-ocf/go-coap/v2/net/blockwise"
1210
kitSync "github.com/go-ocf/kit/sync"
11+
"github.com/plgd-dev/go-coap/v2/message"
12+
"github.com/plgd-dev/go-coap/v2/net/blockwise"
1313

14-
"github.com/go-ocf/go-coap/v2/net/keepalive"
14+
"github.com/plgd-dev/go-coap/v2/net/keepalive"
1515

16-
"github.com/go-ocf/go-coap/v2/message/codes"
17-
"github.com/go-ocf/go-coap/v2/udp/client"
18-
udpMessage "github.com/go-ocf/go-coap/v2/udp/message"
19-
"github.com/go-ocf/go-coap/v2/udp/message/pool"
16+
"github.com/plgd-dev/go-coap/v2/message/codes"
17+
"github.com/plgd-dev/go-coap/v2/udp/client"
18+
udpMessage "github.com/plgd-dev/go-coap/v2/udp/message"
19+
"github.com/plgd-dev/go-coap/v2/udp/message/pool"
2020

21-
coapNet "github.com/go-ocf/go-coap/v2/net"
21+
coapNet "github.com/plgd-dev/go-coap/v2/net"
2222
)
2323

2424
// A ServerOption sets options such as credentials, codec and keepalive parameters, etc.

dtls/server_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/go-ocf/go-coap/v2/dtls"
11-
coapNet "github.com/go-ocf/go-coap/v2/net"
12-
"github.com/go-ocf/go-coap/v2/udp/client"
1310
piondtls "github.com/pion/dtls/v2"
11+
"github.com/plgd-dev/go-coap/v2/dtls"
12+
coapNet "github.com/plgd-dev/go-coap/v2/net"
13+
"github.com/plgd-dev/go-coap/v2/udp/client"
1414
"github.com/stretchr/testify/require"
1515
)
1616

dtls/session.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"net"
77
"sync"
88

9-
coapNet "github.com/go-ocf/go-coap/v2/net"
10-
"github.com/go-ocf/go-coap/v2/udp/client"
11-
"github.com/go-ocf/go-coap/v2/udp/message/pool"
9+
coapNet "github.com/plgd-dev/go-coap/v2/net"
10+
"github.com/plgd-dev/go-coap/v2/udp/client"
11+
"github.com/plgd-dev/go-coap/v2/udp/message/pool"
1212
)
1313

1414
type EventFunc = func()

0 commit comments

Comments
 (0)