From d5d5e712703f41132bc4241e99e110b0cd367675 Mon Sep 17 00:00:00 2001 From: Muaz Ahmad Date: Thu, 10 Aug 2023 23:51:54 +0500 Subject: [PATCH] Added \"stream key\" to params storage --- rtmp/server.go | 1 + 1 file changed, 1 insertion(+) diff --git a/rtmp/server.go b/rtmp/server.go index fb26812..bb9cc6e 100644 --- a/rtmp/server.go +++ b/rtmp/server.go @@ -9,6 +9,7 @@ type ProtocolParams struct { chunk_size uint32 peer_ack_win uint32 curr_read uint32 + stream_key string } func NewServer(port *string) (error) {