summaryrefslogtreecommitdiffstats
path: root/eBones/lib/libkrb
Commit message (Collapse)AuthorAgeFilesLines
* *GULP* Punt this into the attic. It is no longer used.markm1997-10-0368-10524/+0
|
* Remove bogus ("char *") malloc(), calloc() and realloc().asami1997-07-131-3/+1
| | | | Found by: jkh and the new world patch
* Replace random() by arc4random() since random() can't be usedache1997-06-141-7/+2
| | | | in libraries, it may damage its predictable sequence
* Remove srandomdev fallback codeache1997-06-141-3/+2
|
* Use srandomdev() nowache1997-03-241-2/+3
|
* Revert $FreeBSD$ to $Id$peter1997-02-2267-126/+126
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-1467-127/+127
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* Fix up some compilation warnings.pst1996-09-222-7/+7
|
* cmp -s || install -c --> install -Cpeter1996-08-301-4/+2
|
* Bring in my changes for removing the pestilent obj links (unless youjkh1996-06-241-2/+1
| | | | | really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current.
* Rename des_set_key -> des_set_key_krb. This was a name conflict with amarkm1996-02-031-3/+4
| | | | documented routine in libdes.
* Bring Jordan's 2.1 dependancy fixes into current.markm1995-11-121-2/+2
| | | | | Incorporate some dependancy fixes from John Hay Submitted by: jkh, John Hay<jhay@mikom.csir.co.za>
* Bump SHLIB_MINOR for krb_get_local_addr() and krb_bind_local_addr()gibbs1995-10-061-1/+2
|
* Kerberos can now deal with multi-homed clients.gibbs1995-10-056-18/+223
| | | | | | | | | | | | | | Kerberos obtains a network address for the local host from the routing tables and uses it consistently for all Kerberos transactions. This ensures that packets only leave the *authenticated* interface. Clients who open and use their own sockets for encrypted or authenticated correspondance to kerberos services should bind their sockets to the same address as that used by kerberos. krb_get_local_addr() and krb_bind_local_addr() allow clients to obtain the local address or bind a socket to the local address used by Kerberos respectively. Reviewed by: Mark Murray <markm>, Garrett Wollman <wollman> Obtained from: concept by Dieter Dworkin Muller <dworkin@village.org>
* Fix printf formatting error %ls -> %s.gibbs1995-09-161-2/+2
|
* Bring back the multi-homed server fixes from revision 1.6. They gotgibbs1995-09-141-52/+121
| | | | klobered when the formating changes were "undone".
* Bmake fixes for the eBones tree.gibbs1995-09-141-6/+5
|
* After the Great eBones Repository Copy (tm), make ebones actuallymarkm1995-09-134-26/+24
| | | | | | | | | | | | | | compile 1) remove rubbish no longer needed 2) correct existing Makefiles 3) add new makefiles where needed 4) correct code, header files and man pages where necessary PLEASE NOTE - after this you will need to make install in eBones/include, and mamake obj depend all install in eBones/lib before doing a make obj depend all install in eBones/. (I am going 6to fix src/Makefile next) PS - I hate slow international links - apologies for all the typos
* Major cleanup of eBones code:markm1995-09-0755-427/+774
| | | | | | | | | | | | | | | | | | - Get all functions prototyped or at least defined before use. - Make code compile (Mostly) clean with -Wall set - Start to reduce the degree to which DES aka libdes is built in. - get all functions to the same uniform standard of definition: int foo(a, b) int a; int *b; { : } - fix numerous bugs exposed by above processes. Note - this replaces the previous work which used an unpopular function definition style.
* Save and check against all address of kerberos servers. This completesgibbs1995-09-061-51/+121
| | | | | | | | the fixes for multi-homed kerberos servers. We're still debating on how we want to fix the client side. Reviewed by: Garrett Wollman <wollman>, Mark Murray <markm> Obtained from: Dieter Dworkin Muller <dworkin@village.org> (small changes by me)
* Start the eBones cleanup ball rolling.markm1995-08-2562-792/+596
| | | | | | | | | | | | | These are the start of a lot of work to clean up the FreeBSD eBones code. these changes include, but are not limited to: - Create prototypes for all the library routines - Make all the libraries compile clean with -Wall set - Fix numerous small bugs shown up in the above process - Prepare the code for libdes's removal to secure/ - add register, registerd and make_keypair to the make Lots more will follow in days to come. OK'ed by: rgrimes
* Remove trailing whitespace.rgrimes1995-05-3028-211/+211
|
* Various documentation changes.jkh1995-02-086-26/+26
| | | | Submitted by: Mark Murray <mark@grondar.za>
* Less expensive fix for the freeing of uninitialized fields in the hostdatagibbs1995-01-251-9/+10
| | | | | struct. Simply test the "no_host" variable, which if true implies that the hostdata contains bogus data, and act accordingly.
* bzero hostdata in send_to_kdc so that if we immediately jump to thegibbs1995-01-251-1/+2
| | | | | | cleanup routine, we don't look at bogus data to determine wheter or not to free the fields of the hostdata struct. This cures the "klogin segfaults when no kerberos servers are availible" problem.
* Don't break existing users of libkrb.so.2.0 who aren't using libcom_err.wollman1995-01-201-1/+2
|
* A more correct fix for the new compile_et. Also, add beforeinstallwollman1995-01-201-7/+10
| | | | | rule to ensure that krb_err.h gets installed (some other programs need it).
* Remove obsolete `-n' flag from compile_et command line.wollman1995-01-141-2/+2
|
* Reflect the fact that compile_et is now a `system' utility.wollman1995-01-141-3/+2
|
* Initial import of eBones.csgr1994-09-3067-0/+9573
| | | | | | | | | | | | | | (Including all changes for FreeBSD - importing the original eBones distribution would be too complex at this stage, since I don't have access to Piero's CVS.) (If you want to include eBones in your system, don't forget to include MAKE_EBONES in /etc/make.conf.) (This stuff is now also suppable from braae.ru.ac.za.) Bones originally from MIT SIPB. Original port to FreeBSD 1.x by Piero Serini. Moved to FreeBSD 2.0 by Doug Rabson and Geoff Rehmet. Nice bug fixes from Doug Rabson.
* BSD 4.4 Lite KerberosIV Sourcesrgrimes1994-05-271-0/+462
OpenPOWER on IntegriCloud