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 <buildbot@rampaginggeek.com>
Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com>
Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
This commit is contained in:
Jeffrey Altman 2011-12-03 17:49:47 -05:00 committed by Jeffrey Altman
parent 2495d02951
commit 01f55bbf14

View File

@ -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)