1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 01:57:12 -05:00

update dependencies in websocket

This commit is contained in:
Darien Raymond 2019-01-17 15:47:07 +01:00
parent 840c559490
commit 0b1496bb7a
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
3 changed files with 3 additions and 6 deletions

View File

@ -5,11 +5,10 @@ import (
"net" "net"
"time" "time"
"github.com/gorilla/websocket"
"v2ray.com/core/common/buf" "v2ray.com/core/common/buf"
"v2ray.com/core/common/errors" "v2ray.com/core/common/errors"
"v2ray.com/core/common/serial" "v2ray.com/core/common/serial"
"v2ray.com/core/external/github.com/gorilla/websocket"
) )
var ( var (

View File

@ -4,11 +4,10 @@ import (
"context" "context"
"time" "time"
"github.com/gorilla/websocket"
"v2ray.com/core/common" "v2ray.com/core/common"
"v2ray.com/core/common/net" "v2ray.com/core/common/net"
"v2ray.com/core/common/session" "v2ray.com/core/common/session"
"v2ray.com/core/external/github.com/gorilla/websocket"
"v2ray.com/core/transport/internet" "v2ray.com/core/transport/internet"
"v2ray.com/core/transport/internet/tls" "v2ray.com/core/transport/internet/tls"
) )

View File

@ -7,12 +7,11 @@ import (
"sync" "sync"
"time" "time"
"github.com/gorilla/websocket"
"v2ray.com/core/common" "v2ray.com/core/common"
"v2ray.com/core/common/net" "v2ray.com/core/common/net"
http_proto "v2ray.com/core/common/protocol/http" http_proto "v2ray.com/core/common/protocol/http"
"v2ray.com/core/common/session" "v2ray.com/core/common/session"
"v2ray.com/core/external/github.com/gorilla/websocket"
"v2ray.com/core/transport/internet" "v2ray.com/core/transport/internet"
v2tls "v2ray.com/core/transport/internet/tls" v2tls "v2ray.com/core/transport/internet/tls"
) )