Skip to content

Commit b91e07f

Browse files
committed
For #307, change max padding to 127 for GSO.
1 parent 5ad99b1 commit b91e07f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

trunk/conf/full.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -446,8 +446,8 @@ rtc_server {
446446
# Whether pad first packet for GSO for padding bytes.
447447
# If 0, disable padding for GSO.
448448
# @remark The max padding size is 0x7f(127).
449-
# default: 0
450-
padding 0;
449+
# default: 127
450+
padding 127;
451451
}
452452

453453
vhost rtc.vhost.srs.com {

trunk/src/app/srs_app_config.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4843,7 +4843,7 @@ bool SrsConfig::get_rtc_server_gso2()
48434843

48444844
int SrsConfig::get_rtc_server_padding()
48454845
{
4846-
static int DEFAULT = 0;
4846+
static int DEFAULT = 127;
48474847

48484848
SrsConfDirective* conf = root->get("rtc_server");
48494849
if (!conf) {

0 commit comments

Comments
 (0)