Fix unintentionally crashing the streamer when requesting FEC with packets sizes over 1024
This commit is contained in:
parent
ff4dbbb26d
commit
e7f8fd165e
1 changed files with 3 additions and 0 deletions
|
|
@ -214,6 +214,9 @@ int LiStartConnection(PSERVER_INFORMATION serverInfo, PSTREAM_CONFIGURATION stre
|
|||
memcpy(&StreamConfig, streamConfig, sizeof(StreamConfig));
|
||||
RemoteAddrString = strdup(serverInfo->address);
|
||||
|
||||
// Because FEC is now supported, we can only support 1024 byte packets
|
||||
StreamConfig.packetSize = 1024;
|
||||
|
||||
// Extract the appversion from the supplied string
|
||||
if (extractVersionQuadFromString(serverInfo->serverInfoAppVersion,
|
||||
AppVersionQuad) < 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue