summaryrefslogtreecommitdiffstats
path: root/src/lib/ccapi
Commit message (Collapse)AuthorAgeFilesLines
* Delete src/lib/ccapi.Sam Hartman2006-10-2160-14200/+0
| | | | | | | | The ccapi shipped in 1.6 will not be based off this code and will live in src/ccapi. It will be copied onto the trunk and branch when ready, but this code is being removed before the branch cut. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18731 dc483132-0cff-0310-8789-dd5450dbe970
* Switched from "#pragma options align" to "#pragma pack". Alexandra Ellwood2006-07-242-4/+4
| | | | | | | Removed Metrowerks "#pragma import" since other framework headers don't specify it. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18380 dc483132-0cff-0310-8789-dd5450dbe970
* Project cleanup:Alexandra Ellwood2006-07-181-50/+0
| | | | | | Removed kipc APIs and deleted files. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18338 dc483132-0cff-0310-8789-dd5450dbe970
* Fixed up warnings and whitespace issues which were confusing the Alexandra Ellwood2006-07-1013-179/+178
| | | | | | Xcode auto-indenter. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18326 dc483132-0cff-0310-8789-dd5450dbe970
* Fixed up warnings and converted to Unix line endingsAlexandra Ellwood2006-07-102-1063/+1063
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18325 dc483132-0cff-0310-8789-dd5450dbe970
* Removed user preferences which were accidentally addedAlexandra Ellwood2006-07-102-3572/+0
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18324 dc483132-0cff-0310-8789-dd5450dbe970
* Revert 18100 before merging onto trunkSam Hartman2006-06-2210-908/+0
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18199 dc483132-0cff-0310-8789-dd5450dbe970
* Add missing headerJeffrey Altman2006-06-221-0/+1
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18195 dc483132-0cff-0310-8789-dd5450dbe970
* Fix parameter name in cc_credentials_iterator_t next()Jeffrey Altman2006-06-221-1/+1
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18194 dc483132-0cff-0310-8789-dd5450dbe970
* remove duplicate header file and obsolete source fileJeffrey Altman2006-06-122-440/+0
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18106 dc483132-0cff-0310-8789-dd5450dbe970
* Temporarily copied KerberosIPC libary from the KfM repository for Alexandra Ellwood2006-06-0910-0/+908
| | | | | | | testing purposes. Note that this will be removed when the CCAPI branch is merged onto the trunk. git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18100 dc483132-0cff-0310-8789-dd5450dbe970
* Added Mac OS X project file and Mach-IPC support codeAlexandra Ellwood2006-06-098-0/+4360
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18099 dc483132-0cff-0310-8789-dd5450dbe970
* Include string.h to get memcpy, strlen, etc on BSD OSesAlexandra Ellwood2006-06-094-0/+4
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18098 dc483132-0cff-0310-8789-dd5450dbe970
* Removed ancient Metrowerks tests from public headersAlexandra Ellwood2006-06-092-34/+11
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18097 dc483132-0cff-0310-8789-dd5450dbe970
* moved enum cc_list_type to generic_lists.h to avoid "incomplete enum" Alexandra Ellwood2006-06-093-12/+7
| | | | | | warnings when compiling generic_lists.c git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18096 dc483132-0cff-0310-8789-dd5450dbe970
* cci_msg_retrieve_blob(): changed argument 4 from void** to char** Alexandra Ellwood2006-06-092-2/+2
| | | | | | to suppress the warnings from gcc. git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18095 dc483132-0cff-0310-8789-dd5450dbe970
* * corrections to windows rpc layerJeffrey Altman2006-06-095-40/+40
| | | | | | * corrections to network byte order conversions git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18094 dc483132-0cff-0310-8789-dd5450dbe970
* improved error handlingJeffrey Altman2006-06-059-445/+840
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18083 dc483132-0cff-0310-8789-dd5450dbe970
* more updatesJeffrey Altman2006-06-0520-75/+1118
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18082 dc483132-0cff-0310-8789-dd5450dbe970
* Move generic list functions to common/generic_lists.cJeffrey Altman2006-05-222-341/+1
| | | | | | | | so they can be used by both the client dll and the server. Fix type utilization in serv_ops.c git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18029 dc483132-0cff-0310-8789-dd5450dbe970
* Move msg.c and marshall.c to common libraryJeffrey Altman2006-05-2213-1113/+72
| | | | | | | | | | | | | | Add dllmain.c which contains the Windows DllMain() entry point. This must be moved later to a Windows specific directory. Cleanup type usage and function name references. All that is missing now from the client DLL is a definition of cci_perform_rpc() which is the entry point to the IPC routine. git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18028 dc483132-0cff-0310-8789-dd5450dbe970
* Source files containing common routines used by both Jeffrey Altman2006-05-224-0/+1485
| | | | | | the client and the server. git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18027 dc483132-0cff-0310-8789-dd5450dbe970
* More byte order conversions in the server operations codeJeffrey Altman2006-05-221-109/+156
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18026 dc483132-0cff-0310-8789-dd5450dbe970
* Construct an outline of a sample platform specific main.cJeffrey Altman2006-05-215-6/+71
| | | | | | | | Add ccs_serv_cleanup() routine. Currently does nothing. Correct field names used within the authorization check. git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18025 dc483132-0cff-0310-8789-dd5450dbe970
* Updates of portable CCAPI sources. All code compilesJeffrey Altman2006-05-1938-3951/+5556
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18022 dc483132-0cff-0310-8789-dd5450dbe970
* Remove ChangeLog files from the source tree. From now on, theSam Hartman2006-04-1111-44/+0
| | | | | | | subversion commit log entry needs to include information that would have been in the changelog. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17893 dc483132-0cff-0310-8789-dd5450dbe970
* * Initial commit of C CCAPI implementationJeffrey Altman2004-10-2746-0/+10711
ticket: 2753 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16840 dc483132-0cff-0310-8789-dd5450dbe970