summaryrefslogtreecommitdiffstats
path: root/eBones/lib
Commit message (Collapse)AuthorAgeFilesLines
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-1487-167/+167
| | | | | | | | 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.
* First round of moving secure telnet (AKA kerberised telnet) to its new homemarkm1996-10-268-50/+73
| | | | | in eBones/. Peter has already (ages ago) done the repository copy. These are mainly -Wall cleanups. The makefile changes will follow in a day or so.
* Fix up some compilation warnings.pst1996-09-223-12/+12
|
* Fix my typo here from last commit.peter1996-09-021-5/+5
| | | | | | (same bug on both US and internat version) Submitted by: Juha Inkari <inkari@cc.hut.fi>
* cmp -s || install -c --> install -Cpeter1996-08-303-16/+8
|
* Ensure that each Kerberised applet has CFLAGS containing -DKERBEROS.markm1996-07-301-2/+2
|
* Some breakeages sneaked in. This fixes them.markm1996-07-303-3/+1
| | | | | | (this relates to a name change in a library that was not properly backed up by the author) Reported by: too mant :-(
* Bring in my changes for removing the pestilent obj links (unless youjkh1996-06-242-4/+2
| | | | | really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current.
* Fix oder of subdirs so this will rebuild if .depends are blown away.markm1996-04-161-2/+2
|
* Big clean-up job. Remove ancient and never-to-be used stuff.markm1996-03-111-32/+3
| | | | The look much more like BSD Makefiles now.
* Fix typo #ifdef -> .if defined().markm1996-03-111-20/+7
| | | | Tidy uo this file a bit.
* Fix typo - -des -> -ldesmarkm1996-03-101-2/+2
|
* Sense MAKE_EBONES, DESTDIRache1996-03-091-15/+22
| | | | | SRCS cleanup DPADD cleanup
* Rename des_set_key -> des_set_key_krb. This was a name conflict with amarkm1996-02-031-3/+4
| | | | documented routine in libdes.
* Fix typo in bind argumentache1995-12-241-2/+2
| | | | Submitted by: gibbs
* Bring Jordan's 2.1 dependancy fixes into current.markm1995-11-122-4/+4
| | | | | Incorporate some dependancy fixes from John Hay Submitted by: jkh, John Hay<jhay@mikom.csir.co.za>
* Remove MAKE_EBONES conditionals. They were originally placed here becausegibbs1995-10-111-3/+1
| | | | of missing functionality in our libkrb which is no longer a problem.
* 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-058-34/+249
| | | | | | | | | | | | | | 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>
* Remove duplicate rkinit_err.c entry in the SRCS line.gibbs1995-09-241-1/+1
|
* Fix printf formatting error %ls -> %s.gibbs1995-09-161-2/+2
|
* Fix this file for the last time. My last diff was screwed up.gibbs1995-09-151-2/+1
|
* Integrate librkinit into the build.gibbs1995-09-151-2/+2
|
* This commit was generated by cvs2svn to compensate for changes in r10764,gibbs1995-09-157-0/+1235
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * MIT's librkinit. Part of the rkinit suite. Rkinit allows you to forwardgibbs1995-09-157-0/+1235
| | | | | | | | tickets to other kerberos hosts safely in one easy step.
* | Enable kerberosIV authentication/encryption conditionalized on MAKE_EBONES.gibbs1995-09-143-29/+15
| | | | | | | | Fix up some of the des calls to be compatible with eBones.
* | Bring back the multi-homed server fixes from revision 1.6. They gotgibbs1995-09-141-52/+121
| | | | | | | | klobered when the formating changes were "undone".
* | Forgot to bring this patch over.gibbs1995-09-141-2/+2
| |
* | Fix a few problems with the depend target.gibbs1995-09-141-1/+3
| | | | | | | | Pointed out by: Mark Murray <markm>
* | Bmake fixes for the eBones tree.gibbs1995-09-145-25/+19
| |
* | added Makefile.inc in the necessary places.markm1995-09-131-0/+3
| | | | | | | | | | Pointed out by: Garrett Wollman Obtained from: equivalent directoies rooted in src/
* | After the Great eBones Repository Copy (tm), make ebones actuallymarkm1995-09-139-42/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-0767-598/+1183
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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-2577-1165/+827
| | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Comment out LDADD+=-ldescrypt, it is not yet active due toache1995-08-051-2/+3
| | | | | | | | missng defines for krb4encpwd and rsaencpwd and missing rsa library too.
* | Make the DB/DBM routines generic (ifdef FreeBSD considered evil), andpst1995-08-021-14/+18
| | | | | | | | | | | | also fix a string allocation bug. Submitted by: Havard Eidnes
* | Final cleanup pass through Makefiles, now this stuffache1995-07-241-7/+9
| | | | | | | | | | | | autodetect kerberos/eBones and work even with eBones, but with reduced functionality (don't pick up des/krb stuff in this case)
* | Add LDADD+= -ldescryptache1995-07-241-1/+2
| | | | | | | | | | | | Reviewed by: Submitted by: Obtained from:
* | Move -ldes under kerb stuff, my faultache1995-07-241-5/+3
| | | | | | | | | | | | Reviewed by: Submitted by: Obtained from:
* | Since this stuff not works with eBones, ifdef kerberos stuffache1995-07-241-1/+4
| | | | | | | | | | | | with MAKE_KERBEROS to allow other things to live Submitted by: Obtained from:
* | Add comment about new_rbd_key.c module needed fromache1995-07-241-1/+4
| | | | | | | | original libdes
* | Fix many bogus things, typing error, dependance errors, etc.,ache1995-07-241-7/+16
| | | | | | | | | | | | now it compiles. Note: this stuff requires original libdes, not libdes from Eric Yang which we have in eBones.
* | Update telnet to the 95.05.31 release.pst1995-07-2011-70/+90
| | | | | | | | Obtained from: Dave Borman <dab@cray.com>
* | Remove trailing whitespace.rgrimes1995-05-3038-331/+331
| |
* | Remove trailing whitespace.rgrimes1995-05-309-39/+39
| |
* | Security fixes.dima1995-02-172-11/+27
| | | | | | | | | | | | CERT Advisory CA-95:03.telnet.encryption Obtained from: CERT
* | Various documentation changes.jkh1995-02-087-29/+29
| | | | | | | | Submitted by: Mark Murray <mark@grondar.za>
* | Fix database rename, we don't have .dr & .pag, use .db insteadache1995-01-251-2/+16
| |
* | 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.
OpenPOWER on IntegriCloud