Hi Rejetto!
I suggest you a very
BIG change in
main.pas:
this:
if assigned(cd) and assigned(cd.conn) then
addr:=nonEmptyConcat('', cd.conn.request.user, '@')
+cd.address+':'+cd.conn.port
+nonEmptyConcat(' {', localDNSget(cd.address), '}');instead of:
if assigned(cd) and assigned(cd.conn) then
addr:=nonEmptyConcat('', cd.conn.request.user, '@')
+cd.address+':'+cd.conn.port
+nonEmptyConcat('{', localDNSget(cd.address), '}');This is to avoid this in the log when using
adress2name:
14:54:48 127.0.0.1:1841{Local} 406 Octets reçus
14:54:48 127.0.0.1:1841{Local} Requête GET /favicon.ico
instead of this:
14:54:48 127.0.0.1:1841 {Local} 406 Octets reçus
14:54:48 127.0.0.1:1841 {Local} Requête GET /favicon.ico
I know this is hard work, excuse me.