summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Hector Martin2009-10-12 06:11:41 +0200
committerGravatar Hector Martin2009-10-12 06:11:41 +0200
commit2eff00f575de19c749f986f85566219bbf6eb3f8 (patch)
treeb720da52e6cbe494ba330fc78a64ec6c908df15d
parent07378b9203f949fb7a475115051edb09f134d8ff (diff)
downloadusbmuxd-2eff00f575de19c749f986f85566219bbf6eb3f8.tar.gz
usbmuxd-2eff00f575de19c749f986f85566219bbf6eb3f8.tar.bz2
Downgrade "no connection for packet" message loglevel too
Also happens after connection is closed by the host and the like, to be expected.
-rw-r--r--daemon/device.c2
1 files changed, 1 insertions, 1 deletions
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);