instead of the cryptic "Request:" use "HTTP request:"
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13010 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1997-2002 Kungliga Tekniska H<>gskolan
|
* Copyright (c) 1997-2003 Kungliga Tekniska H<>gskolan
|
||||||
* (Royal Institute of Technology, Stockholm, Sweden).
|
* (Royal Institute of Technology, Stockholm, Sweden).
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
@@ -637,7 +637,7 @@ handle_http_tcp (struct descr *d)
|
|||||||
t++;
|
t++;
|
||||||
if(de_http(t) != 0) {
|
if(de_http(t) != 0) {
|
||||||
kdc_log(0, "Malformed HTTP request from %s", d->addr_string);
|
kdc_log(0, "Malformed HTTP request from %s", d->addr_string);
|
||||||
kdc_log(5, "Request: %s", t);
|
kdc_log(5, "HTTP request: %s", t);
|
||||||
free(data);
|
free(data);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@@ -663,7 +663,7 @@ handle_http_tcp (struct descr *d)
|
|||||||
write(d->s, proto, strlen(proto));
|
write(d->s, proto, strlen(proto));
|
||||||
write(d->s, msg, strlen(msg));
|
write(d->s, msg, strlen(msg));
|
||||||
kdc_log(0, "HTTP request from %s is non KDC request", d->addr_string);
|
kdc_log(0, "HTTP request from %s is non KDC request", d->addr_string);
|
||||||
kdc_log(5, "Request: %s", t);
|
kdc_log(5, "HTTP request: %s", t);
|
||||||
free(data);
|
free(data);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user