Split into more files. Add support for TCP.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1848 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-06-07 17:35:53 +00:00
parent 20f7838f30
commit 96f3cac1da
7 changed files with 343 additions and 148 deletions

15
kdc/kerberos4.c Normal file
View File

@@ -0,0 +1,15 @@
#include "kdc_locl.h"
RCSID("$Id$");
int
maybe_version4(unsigned char *buf, int len)
{
return len > 0 && *buf == 4;
}
krb5_error_code
do_version4()
{
}