Displaying 2 results from an estimated 2 matches for "client_auth_input".
2007 Nov 22
4
SIGSEGV login process
...s found)...done.
Loaded symbols for /lib/libc.so.6
Reading symbols from /libexec/ld-elf.so.1...(no debugging symbols
found)...done.
Loaded symbols for /libexec/ld-elf.so.1
#0 0x08051e2d in auth_client_request_continue ()
(gdb) bt
#0 0x08051e2d in auth_client_request_continue ()
#1 0x0804b8db in client_auth_input ()
#2 0x080562ec in io_loop_handler_run ()
#3 0x0805599d in io_loop_run ()
#4 0x0804d963 in main ()
(gdb)
or what anything info should i provide?
2004 Jul 09
1
passing remote ip to pam
...ase 0:
/* continue */
ptr = buffer_get_data(client->plain_login, &size);
- auth_continue_request(request, ptr, size);
+ auth_continue_request(request, ptr, size, &client->common.ip);
buffer_set_used_size(client->plain_login, 0);
break;
@@ -270,7 +270,8 @@ static void client_auth_input(void *cont
} else {
auth_continue_request(client->common.auth_request,
buffer_get_data(buf, NULL),
- buffer_get_used_size(buf));
+ buffer_get_used_size(buf),
+ &client->common.ip);
}
/* clear sensitive data */
diff -rpu dovecot-0.99.10.6.deb...