Recognize http/' and udp/' as protocol specifications.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4544 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1998-03-05 23:41:23 +00:00
parent 5fba104aef
commit 41a2bdc912

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 1997 Kungliga Tekniska H<>gskolan
* Copyright (c) 1997, 1998 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
@@ -200,9 +200,15 @@ krb5_sendto_kdc (krb5_context context,
p += 7;
http_flag = 1;
port = htons(80);
} else if(strncmp(p, "http/", 5) == 0) {
p += 5;
http_flag = 1;
port = htons(80);
}else if(strncmp(p, "tcp/", 4) == 0){
p += 4;
tcp_flag = 1;
} else if(strncmp(p, "udp/", 4) == 0) {
p += 4;
}
colon = strchr (p, ':');
if (colon)