Обработка пакетов SDP от клиента

This commit is contained in:
set
2026-03-11 21:00:19 +02:00
parent b81ae8a3c0
commit 181ddb921e
4 changed files with 64 additions and 25 deletions

View File

@@ -0,0 +1,11 @@
package connection
import (
"github.com/gorilla/websocket"
)
type Connection struct {
Identificator string
//Подсоединенный сокет
Socket *websocket.Conn
}