View | Details | Raw Unified | Return to bug 1263
Collapse All | Expand All

(-)packet.c (-1 / +2 lines)
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

Return to bug 1263