Searched refs:timeout_idle (Results 1 - 3 of 3) sorted by relevance

/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
H A Dtimeout.c38 unsigned int timeout_idle = 900; /* Command idle: 15 minutes */ variable
55 timeout_idle = value;
56 if (timeout_maxidle < timeout_idle)
57 timeout_maxidle = timeout_idle;
61 if (timeout_idle > timeout_maxidle)
62 timeout_idle = timeout_maxidle;
H A Dftpcmd.y93 extern unsigned int timeout_idle;
900 timeout_idle, timeout_maxidle);
913 timeout_idle = $6;
914 reply(200, "Maximum IDLE time set to %d seconds", timeout_idle);
1936 "Timeout (%d seconds): closing control connection.", timeout_idle);
1941 (pw ? pw->pw_name : "unknown"), timeout_idle, ctime(&now));
1979 (void) alarm((unsigned) timeout_idle);
1984 (void) alarm((unsigned) timeout_idle);
H A Dftpd.c286 extern unsigned int timeout_idle;
803 timeout_idle = atoi(optarg);
804 if (timeout_maxidle < timeout_idle)
805 timeout_maxidle = timeout_idle;
810 if (timeout_idle > timeout_maxidle)
811 timeout_idle = timeout_maxidle;

Completed in 110 milliseconds