broadway: Enable TCP_NODELAY for output socket

This makes us send data immediately, giving a much snappier
over-network experience.
This commit is contained in:
Alexander Larsson 2011-03-15 11:47:38 +01:00
parent 7605258890
commit 9a26fd25af

View File

@ -4,6 +4,10 @@
#include <assert.h>
#include <errno.h>
#include <zlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include "broadway.h"
@ -540,12 +544,15 @@ BroadwayOutput *
broadway_output_new(int fd, guint32 serial)
{
BroadwayOutput *output;
int flag = 1;
output = g_new0 (BroadwayOutput, 1);
output->fd = fd;
output->serial = serial;
setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &flag, sizeof(int));
broadway_output_write_header (output);
output->zfd = gzdopen(fd, "wb");