From 2eff00f575de19c749f986f85566219bbf6eb3f8 Mon Sep 17 00:00:00 2001 From: Hector Martin Date: Mon, 12 Oct 2009 06:11:41 +0200 Subject: Downgrade "no connection for packet" message loglevel too Also happens after connection is closed by the host and the like, to be expected. --- daemon/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'daemon') diff --git a/daemon/device.c b/daemon/device.c index 3a5883c..37c09a6 100644 --- a/daemon/device.c +++ b/daemon/device.c @@ -475,7 +475,7 @@ static void device_tcp_input(struct mux_device *dev, struct tcphdr *th, unsigned } ENDFOREACH if(!conn) { - usbmuxd_log(LL_WARNING, "No connection for device %d incoming packet %d->%d", dev->id, dport, sport); + usbmuxd_log(LL_INFO, "No connection for device %d incoming packet %d->%d", dev->id, dport, sport); if(!(th->th_flags & TH_RST)) { if(send_anon_rst(dev, sport, dport, ntohl(th->th_seq)) < 0) usbmuxd_log(LL_ERROR, "Error sending TCP RST to device %d (%d->%d)", conn->dev->id, sport, dport); -- cgit v1.1-32-gdbae