summaryrefslogtreecommitdiff
path: root/serverloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'serverloop.c')
-rw-r--r--serverloop.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/serverloop.c b/serverloop.c
index a3cb8e782..464c07d2f 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: serverloop.c,v 1.199 2017/10/23 05:08:00 djm Exp $ */ 1/* $OpenBSD: serverloop.c,v 1.200 2017/12/10 05:55:29 dtucker Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -171,10 +171,12 @@ static void
171client_alive_check(struct ssh *ssh) 171client_alive_check(struct ssh *ssh)
172{ 172{
173 int channel_id; 173 int channel_id;
174 char remote_id[512];
174 175
175 /* timeout, check to see how many we have had */ 176 /* timeout, check to see how many we have had */
176 if (packet_inc_alive_timeouts() > options.client_alive_count_max) { 177 if (packet_inc_alive_timeouts() > options.client_alive_count_max) {
177 logit("Timeout, client not responding."); 178 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
179 logit("Timeout, client not responding from %s", remote_id);
178 cleanup_exit(255); 180 cleanup_exit(255);
179 } 181 }
180 182