From 01f55bbf14210ef3e4f4c0246409af370de3a383 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Sat, 3 Dec 2011 17:49:47 -0500 Subject: [PATCH] Windows: apply Nat Pings only to cm_rootUser connections Use CM_UCELLFLAG_ROOTUSER flag to identify the cm_rootUser connections and only apply Nat pings to those connections instead of examining the security state of the connection. Change-Id: I978501972509d1e58b08b630e1ff046b404e59d8 Reviewed-on: http://gerrit.openafs.org/6208 Tested-by: BuildBot Reviewed-by: Jeffrey Altman Tested-by: Jeffrey Altman --- src/WINNT/afsd/cm_conn.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/WINNT/afsd/cm_conn.c b/src/WINNT/afsd/cm_conn.c index c737b2030a..15ec650fa7 100644 --- a/src/WINNT/afsd/cm_conn.c +++ b/src/WINNT/afsd/cm_conn.c @@ -1256,8 +1256,10 @@ static void cm_NewRXConnection(cm_conn_t *tcp, cm_ucell_t *ucellp, * Only file servers implement client callbacks and we only need one ping * to be sent to each server. */ - if (NatPingInterval && serverp->type == CM_SERVER_FILE && secIndex == 0) + if (NatPingInterval && serverp->type == CM_SERVER_FILE && + (ucellp->flags & CM_UCELLFLAG_ROOTUSER)) { rx_SetConnSecondsUntilNatPing(tcp->rxconnp, NatPingInterval); + } tcp->ucgen = ucellp->gen; if (secObjp)