Преглед на файлове

Add Websocket Stream type

Shelikhoo преди 9 години
родител
ревизия
0d60d2449a
променени са 1 файла, в които са добавени 4 реда и са изтрити 3 реда
  1. 4 3
      transport/internet/connection.go

+ 4 - 3
transport/internet/connection.go

@@ -15,9 +15,10 @@ type Reusable interface {
 type StreamConnectionType int
 
 const (
-	StreamConnectionTypeRawTCP StreamConnectionType = 1
-	StreamConnectionTypeTCP    StreamConnectionType = 2
-	StreamConnectionTypeKCP    StreamConnectionType = 4
+	StreamConnectionTypeRawTCP    StreamConnectionType = 1
+	StreamConnectionTypeTCP       StreamConnectionType = 2
+	StreamConnectionTypeKCP       StreamConnectionType = 4
+	StreamConnectionTypeWebSocket StreamConnectionType = 8
 )
 
 type StreamSecurityType int