summaryrefslogtreecommitdiffstats
path: root/server/responder/common/responder_cmd.c
Commit message (Collapse)AuthorAgeFilesLines
* Rename server/ directory to src/Stephen Gallagher2010-02-181-103/+0
| | | | Also update BUILD.txt
* Pointers to non 32 bit aligned data were being cast to uint32_t *George McCollister2010-01-221-1/+1
| | | | | | | | uint32_t pointers must point to 32 bit aligned data on ARM. Instead of padding the data to force it into alignment I altered the code to memcpy the data to an aligned location. I'd appreciate any and all feedback especially on whether I took the best approach. pam_test_client auth and pam_test_client acct now work on my armeb-xscale-linux-gnueabi target. Signed-off-by: George McCollister <georgem@opteron.novatech-llc.com>
* Raise debug level for version negotiationSimo Sorce2009-07-201-2/+2
|
* added more flexible handling of client protocolSumit Bose2009-05-151-1/+33
| | | | | - allow different protocol versions for PAM and NSS - support more than one protocol version in the responder
* Unify name parsing and reposnder headersSimo Sorce2009-04-071-1/+1
| | | | | | Use common sss_parse_name function in all responders Simplify responder headers by combining common,cmd,dp in one header and add name parse structure as part of the common responder context.
* Make nsssrv use the common responder functionsSimo Sorce2009-03-271-11/+4
| | | | | Make nss_ctx a private pointer of the common resp_ctx Use sss_process_init and remove all duplicate functions from nsssrv.c
* Rebase the code to use talloc, tdb, tevent, ldb as externalSimo Sorce2009-02-261-1/+1
| | | | | | dependencies based on the latest samba code. Convert all references to the old events library to use the renamed tevent library.
* Add PAM responderSumit Bose2009-02-241-0/+78
Also move responders under server/responder with shared code in server/responder/common Signed-off-by: Simo Sorce <ssorce@redhat.com>