1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00

use websocket from vendor

This commit is contained in:
Darien Raymond 2018-04-20 22:45:44 +02:00
parent 826be19231
commit c9e711374f
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
3 changed files with 6 additions and 3 deletions

View File

@ -5,7 +5,8 @@ import (
"net"
"time"
"github.com/gorilla/websocket"
"websocket"
"v2ray.com/core/common/buf"
"v2ray.com/core/common/errors"
)

View File

@ -4,7 +4,8 @@ import (
"context"
"time"
"github.com/gorilla/websocket"
"websocket"
"v2ray.com/core/common"
"v2ray.com/core/common/net"
"v2ray.com/core/transport/internet"

View File

@ -8,7 +8,8 @@ import (
"sync"
"time"
"github.com/gorilla/websocket"
"websocket"
"v2ray.com/core/common"
"v2ray.com/core/common/net"
http_proto "v2ray.com/core/common/protocol/http"