mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
75ebfc6f7a
(This used to be commit af5ded9f17
)
39 lines
776 B
C
39 lines
776 B
C
/*
|
|
* Test maximum number of file descriptors winbind daemon can handle
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <pwd.h>
|
|
#include <sys/types.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
struct passwd *pw;
|
|
int i;
|
|
|
|
while(1) {
|
|
|
|
/* Start getpwent until we get an NT user. This way we know we
|
|
have at least opened a connection to the winbind daemon */
|
|
|
|
setpwent();
|
|
|
|
while((pw = getpwent()) != NULL) {
|
|
if (strchr(pw->pw_name, '/') != NULL) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (pw != NULL) {
|
|
i++;
|
|
printf("got pwent handle %d\n", i);
|
|
} else {
|
|
printf("winbind daemon not running?\n");
|
|
exit(1);
|
|
}
|
|
|
|
sleep(1);
|
|
}
|
|
}
|