Some GSS mechanisms (such as GSS EAP - RFC 7055) require user
interaction, and ten seconds is too little to allow users to select
the identity they want to use or type their password. Make gss-client
and gss-server more useful for testing these mechanisms by extending
its timeout to five minutes.
[ghudson@mit.edu: edited commit message]
ticket: 8719 (new)
FD_ZERO(&rfds);
FD_SET(fildes, &rfds);
- tv.tv_sec = 10;
+ tv.tv_sec = 300;
tv.tv_usec = 0;
for (ptr = buf; nbyte; ptr += ret, nbyte -= ret) {