Skip to content

Commit

Permalink
Mass replace pions -> pion
Browse files Browse the repository at this point in the history
Pions organization was renamed to pion
  • Loading branch information
Sean-Der committed Apr 4, 2019
1 parent e63b39a commit 8370fcf
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<h4 align="center">A Go implementation of DTLS</h4>
<p align="center">
<a href="https://pion.ly"><img src="https://img.shields.io/badge/pion-dtls-gray.svg?longCache=true&colorB=brightgreen" alt="Pion DTLS"></a>
<a href="https://sourcegraph.com/github.com/pions/dtls/pkg/dtls?badge"><img src="https://sourcegraph.com/github.com/pions/dtls/pkg/dtls/-/badge.svg" alt="Sourcegraph Widget"></a>
<a href="https://sourcegraph.com/github.com/pion/dtls/pkg/dtls?badge"><img src="https://sourcegraph.com/github.com/pion/dtls/pkg/dtls/-/badge.svg" alt="Sourcegraph Widget"></a>
<a href="https://pion.ly/slack"><img src="https://img.shields.io/badge/join-us%20on%20slack-gray.svg?longCache=true&logo=slack&colorB=brightgreen" alt="Slack Widget"></a>
<a href="https://waffle.io/pions/webrtc"><img src="https://img.shields.io/badge/pm-waffle-gray.svg?longCache=true&colorB=brightgreen" alt="Waffle board"></a>
<a href="https://waffle.io/pion/webrtc"><img src="https://img.shields.io/badge/pm-waffle-gray.svg?longCache=true&colorB=brightgreen" alt="Waffle board"></a>
<br>
<a href="https://travis-ci.org/pions/dtls"><img src="https://travis-ci.org/pions/dtls.svg?branch=master" alt="Build Status"></a>
<a href="https://godoc.org/github.com/pions/dtls"><img src="https://godoc.org/github.com/pions/dtls?status.svg" alt="GoDoc"></a>
<a href="https://coveralls.io/github/pions/dtls"><img src="https://coveralls.io/repos/github/pions/dtls/badge.svg" alt="Coverage Status"></a>
<a href="https://goreportcard.com/report/github.com/pions/dtls"><img src="https://goreportcard.com/badge/github.com/pions/dtls" alt="Go Report Card"></a>
<a href="https://travis-ci.org/pion/dtls"><img src="https://travis-ci.org/pion/dtls.svg?branch=master" alt="Build Status"></a>
<a href="https://godoc.org/github.com/pion/dtls"><img src="https://godoc.org/github.com/pion/dtls?status.svg" alt="GoDoc"></a>
<a href="https://coveralls.io/github/pion/dtls"><img src="https://coveralls.io/repos/github/pion/dtls/badge.svg" alt="Coverage Status"></a>
<a href="https://goreportcard.com/report/github.com/pion/dtls"><img src="https://goreportcard.com/badge/github.com/pion/dtls" alt="Go Report Card"></a>
<a href="https://www.codacy.com/app/Sean-Der/dtls"><img src="https://api.codacy.com/project/badge/Grade/18f4aec384894e6aac0b94effe51961d" alt="Codacy Badge"></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a>
</p>
Expand Down Expand Up @@ -70,7 +70,7 @@ Pion DTLS can connect to itself and OpenSSL.
```

### Contributing
Check out the **[contributing wiki](https://github.com/pions/webrtc/wiki/Contributing)** to join the group of amazing people making this project possible:
Check out the **[contributing wiki](https://github.com/pion/webrtc/wiki/Contributing)** to join the group of amazing people making this project possible:

* [Sean DuBois](https://github.com/Sean-Der) - *Original Author*
* [Michiel De Backker](https://github.com/backkem) - *Public API*
Expand Down
2 changes: 1 addition & 1 deletion conn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"testing"
"time"

"github.com/pions/transport/test"
"github.com/pion/transport/test"
)

// Seems to strict for out implementation at this point
Expand Down
2 changes: 1 addition & 1 deletion e2e/e2e.go
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Package e2e contains end to end tests for pions/dtls
// Package e2e contains end to end tests for pion/dtls
package e2e
4 changes: 2 additions & 2 deletions e2e/e2e_lossy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"testing"
"time"

"github.com/pions/dtls"
transportTest "github.com/pions/transport/test"
"github.com/pion/dtls"
transportTest "github.com/pion/transport/test"
)

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

"github.com/pions/dtls"
"github.com/pion/dtls"
)

const testMessage = "Hello World"
Expand Down
4 changes: 2 additions & 2 deletions examples/dial/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"net"

"github.com/pions/dtls"
"github.com/pions/dtls/examples/util"
"github.com/pion/dtls"
"github.com/pion/dtls/examples/util"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions examples/listen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strings"
"sync"

"github.com/pions/dtls"
"github.com/pions/dtls/examples/util"
"github.com/pion/dtls"
"github.com/pion/dtls/examples/util"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/pions/dtls
module github.com/pion/dtls

require (
github.com/pions/transport v0.5.0
github.com/pion/transport v0.6.0
golang.org/x/crypto v0.0.0-20190123085648-057139ce5d2b
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/pions/transport v0.5.0 h1:/KGBCzjc8bvVh8P5NP8GiSGL/PbupzhqvEOEBSlZux0=
github.com/pions/transport v0.5.0/go.mod h1:9gvUd8ZeyU4ZX7dhNuUq97mPoekopkd7eCJEyhKwVO0=
github.com/pion/transport v0.6.0 h1:WAoyJg/6OI8dhCVFl/0JHTMd1iu2iHgGUXevptMtJ3U=
github.com/pion/transport v0.6.0/go.mod h1:iWZ07doqOosSLMhZ+FXUTq+TamDoXSllxpbGcfkCmbE=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
Expand Down
2 changes: 1 addition & 1 deletion internal/udp/conn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

"github.com/pions/transport/test"
"github.com/pion/transport/test"
)

// Note: doesn't work since closing isn't propagated to the other side
Expand Down
2 changes: 1 addition & 1 deletion listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"net"

"github.com/pions/dtls/internal/udp"
"github.com/pion/dtls/internal/udp"
)

// Listen creates a DTLS listener
Expand Down

0 comments on commit 8370fcf

Please sign in to comment.