|
Lines 1482-1488
packet_set_interactive(int interactive)
Link Here
|
| 1482 |
/* Only set socket options if using a socket. */ |
1482 |
/* Only set socket options if using a socket. */ |
| 1483 |
if (!packet_connection_is_on_socket()) |
1483 |
if (!packet_connection_is_on_socket()) |
| 1484 |
return; |
1484 |
return; |
| 1485 |
set_nodelay(connection_in); |
1485 |
if (interactive) |
|
|
1486 |
set_nodelay(connection_in); |
| 1486 |
packet_set_tos(interactive); |
1487 |
packet_set_tos(interactive); |
| 1487 |
} |
1488 |
} |
| 1488 |
|
1489 |
|