system: nxplayer: Introduce max host and file name for http url

Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
This commit is contained in:
Masayuki Ishikawa 2020-05-21 11:29:45 +09:00 committed by Xiang Xiao
parent 36bce2959a
commit 8d1f2d52da
2 changed files with 14 additions and 2 deletions

View File

@ -129,3 +129,15 @@ config NXPLAYER_HTTP_STREAMING_SUPPORT
audio streaming as well as local file playback.
endif
if NXPLAYER_HTTP_STREAMING_SUPPORT
config NXPLAYER_HTTP_MAXHOSTNAME
int "Max host name in URL"
default 40
config NXPLAYER_HTTP_MAXFILENAME
int "Max file name in URL"
default 100
endif

View File

@ -171,8 +171,8 @@ static const int g_known_ext_count = sizeof(g_known_ext) /
static int _open_with_http(const char *fullurl)
{
char relurl[32];
char hostname[32];
char relurl[CONFIG_NXPLAYER_HTTP_MAXFILENAME];
char hostname[CONFIG_NXPLAYER_HTTP_MAXHOSTNAME];
int resp_chk = 0;
char resp_msg[] = "\r\n\r\n";
struct timeval tv;