diff --git a/diskwriter/diskwriter.go b/diskwriter/diskwriter.go index 9b29fc3..96ecc7e 100644 --- a/diskwriter/diskwriter.go +++ b/diskwriter/diskwriter.go @@ -16,8 +16,8 @@ import ( "github.com/pion/rtp/codecs" "github.com/pion/webrtc/v3/pkg/media/samplebuilder" - "galene/conn" - "galene/group" + "github.com/jech/galene/conn" + "github.com/jech/galene/group" ) var Directory string diff --git a/estimator/estimator.go b/estimator/estimator.go index f507c21..5fa736d 100644 --- a/estimator/estimator.go +++ b/estimator/estimator.go @@ -4,7 +4,7 @@ import ( "sync/atomic" "time" - "galene/rtptime" + "github.com/jech/galene/rtptime" ) type Estimator struct { diff --git a/estimator/estimator_test.go b/estimator/estimator_test.go index ff519dd..0e1dea1 100644 --- a/estimator/estimator_test.go +++ b/estimator/estimator_test.go @@ -3,7 +3,7 @@ package estimator import ( "testing" - "galene/rtptime" + "github.com/jech/galene/rtptime" ) func TestEstimator(t *testing.T) { diff --git a/galene-password-generator/galene-password.generator.go b/galene-password-generator/galene-password.generator.go index 439e6b2..0a55b82 100644 --- a/galene-password-generator/galene-password.generator.go +++ b/galene-password-generator/galene-password.generator.go @@ -12,7 +12,7 @@ import ( "golang.org/x/crypto/pbkdf2" - "galene/group" + "github.com/jech/galene/group" ) func main() { diff --git a/galene.go b/galene.go index 39bffcb..ea72150 100644 --- a/galene.go +++ b/galene.go @@ -11,9 +11,9 @@ import ( "syscall" "time" - "galene/diskwriter" - "galene/group" - "galene/webserver" + "github.com/jech/galene/diskwriter" + "github.com/jech/galene/group" + "github.com/jech/galene/webserver" ) func main() { diff --git a/go.mod b/go.mod index 23baefa..881672e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module galene +module github.com/jech/galene go 1.13 diff --git a/group/client.go b/group/client.go index f4f5e29..0f17377 100644 --- a/group/client.go +++ b/group/client.go @@ -10,7 +10,7 @@ import ( "golang.org/x/crypto/pbkdf2" - "galene/conn" + "github.com/jech/galene/conn" ) type RawPassword struct { diff --git a/jitter/jitter.go b/jitter/jitter.go index 8dacad2..f84e0f5 100644 --- a/jitter/jitter.go +++ b/jitter/jitter.go @@ -3,7 +3,7 @@ package jitter import ( "sync/atomic" - "galene/rtptime" + "github.com/jech/galene/rtptime" ) type Estimator struct { diff --git a/rtpconn/rtpconn.go b/rtpconn/rtpconn.go index 8e851a4..cda0368 100644 --- a/rtpconn/rtpconn.go +++ b/rtpconn/rtpconn.go @@ -13,12 +13,12 @@ import ( "github.com/pion/rtp" "github.com/pion/webrtc/v3" - "galene/conn" - "galene/estimator" - "galene/group" - "galene/jitter" - "galene/packetcache" - "galene/rtptime" + "github.com/jech/galene/conn" + "github.com/jech/galene/estimator" + "github.com/jech/galene/group" + "github.com/jech/galene/jitter" + "github.com/jech/galene/packetcache" + "github.com/jech/galene/rtptime" ) type bitrate struct { diff --git a/rtpconn/rtpreader.go b/rtpconn/rtpreader.go index 8ffa1e9..018c3ef 100644 --- a/rtpconn/rtpreader.go +++ b/rtpconn/rtpreader.go @@ -9,8 +9,8 @@ import ( "github.com/pion/rtp/codecs" "github.com/pion/webrtc/v3" - "galene/packetcache" - "galene/rtptime" + "github.com/jech/galene/packetcache" + "github.com/jech/galene/rtptime" ) func isVP8Keyframe(packet *rtp.Packet) bool { diff --git a/rtpconn/rtpstats.go b/rtpconn/rtpstats.go index b441779..9397d55 100644 --- a/rtpconn/rtpstats.go +++ b/rtpconn/rtpstats.go @@ -5,8 +5,8 @@ import ( "sync/atomic" "time" - "galene/rtptime" - "galene/stats" + "github.com/jech/galene/rtptime" + "github.com/jech/galene/stats" ) func (c *webClient) GetStats() *stats.Client { diff --git a/rtpconn/rtpwriter.go b/rtpconn/rtpwriter.go index cad180e..888967d 100644 --- a/rtpconn/rtpwriter.go +++ b/rtpconn/rtpwriter.go @@ -9,9 +9,9 @@ import ( "github.com/pion/rtp" - "galene/conn" - "galene/packetcache" - "galene/rtptime" + "github.com/jech/galene/conn" + "github.com/jech/galene/packetcache" + "github.com/jech/galene/rtptime" ) // packetIndex is a request to send a packet from the cache. diff --git a/rtpconn/webclient.go b/rtpconn/webclient.go index a9f274b..1959b71 100644 --- a/rtpconn/webclient.go +++ b/rtpconn/webclient.go @@ -12,10 +12,10 @@ import ( "github.com/gorilla/websocket" "github.com/pion/webrtc/v3" - "galene/conn" - "galene/diskwriter" - "galene/estimator" - "galene/group" + "github.com/jech/galene/conn" + "github.com/jech/galene/diskwriter" + "github.com/jech/galene/estimator" + "github.com/jech/galene/group" ) func errorToWSCloseMessage(id string, err error) (*clientMessage, []byte) { diff --git a/stats/stats.go b/stats/stats.go index 3fc0e6f..74ef6ba 100644 --- a/stats/stats.go +++ b/stats/stats.go @@ -4,7 +4,7 @@ import ( "sort" "time" - "galene/group" + "github.com/jech/galene/group" ) type GroupStats struct { diff --git a/webserver/webserver.go b/webserver/webserver.go index 3471735..c98ddfb 100644 --- a/webserver/webserver.go +++ b/webserver/webserver.go @@ -21,10 +21,10 @@ import ( "github.com/gorilla/websocket" - "galene/diskwriter" - "galene/group" - "galene/rtpconn" - "galene/stats" + "github.com/jech/galene/diskwriter" + "github.com/jech/galene/group" + "github.com/jech/galene/rtpconn" + "github.com/jech/galene/stats" ) var server atomic.Value