Displaying 1 result from an estimated 1 matches for "old_signal_handler".
2007 Mar 13
2
Authenticating with Active Directory
.../* We were not able to read off of the domain authentication pipe. */
fputs("Signal error while authenticating domain.\n", stdout);
exit(0);
}
int main(int argc, char **argv) {
printf("userName:userPassword\n");
printf("%s:%s\n", argv[1], argv[2]);
void (*old_signal_handler)(int);
old_signal_handler = signal(SIGPIPE, catch_sigpipe);
//result = Valid_User(userName, userPassword, pdc, bdc, domain);
int result = Valid_User(argv[1], argv[2],
"192.168.0.20",
"192.168.0.20",
"ADTESTE");
signal(SIGPI...