|
Lines 1439-1446
packet_set_interactive(int interactive)
Link Here
|
| 1439 |
/* Only set socket options if using a socket. */ |
1439 |
/* Only set socket options if using a socket. */ |
| 1440 |
if (!packet_connection_is_on_socket()) |
1440 |
if (!packet_connection_is_on_socket()) |
| 1441 |
return; |
1441 |
return; |
| 1442 |
if (interactive) |
1442 |
set_nodelay(connection_in); |
| 1443 |
set_nodelay(connection_in); |
|
|
| 1444 |
packet_set_tos(interactive); |
1443 |
packet_set_tos(interactive); |
| 1445 |
} |
1444 |
} |
| 1446 |
|
1445 |
|