Raise maximum UDP packet size for IPTV to 65536

This commit is contained in:
Andreas Öman 2009-12-01 20:07:13 +00:00
parent b886e97041
commit 3b5d94dc78

View file

@ -123,7 +123,7 @@ static void *
iptv_thread(void *aux)
{
int nfds, fd, r, j;
uint8_t tsb[2048];
uint8_t tsb[65536];
th_transport_t *t;
struct epoll_event ev;
@ -140,7 +140,7 @@ iptv_thread(void *aux)
continue;
fd = ev.data.fd;
r = read(fd, tsb, 2048);
r = read(fd, tsb, sizeof(tsb));
// Add RTP support here