You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Ben Laurie <be...@algroup.co.uk> on 1999/06/20 14:37:16 UTC

Re: cvs commit: apache-2.0/mpm/src Configuration.mpm

jim@hyperreal.org wrote:
> 
> jim         99/06/19 15:16:04
> 
>   Modified:    mpm/src  Configuration.mpm
>   Log:
>   FreeBSD requires this to grab the thread
>   lib for pthreads. Uncomment when trying on that

I used -lc_r - is there a difference?

Cheers,

Ben.

--
http://www.apache-ssl.org/ben.html

"My grandfather once told me that there are two kinds of people: those
who work and those who take the credit. He told me to try to be in the
first group; there was less competition there."
     - Indira Gandhi

client sent HTTP/1.1 request without hostname

Posted by tser <te...@worldonline.nl>.
Hi, I have a little question about a nummer of errors i suddenly saw
beginning to raise in my Logs :

It started like 5 may, but now it keep's steady growing.
[Wed May  5 16:43:56 1999] [error] [client 212.123.185.6] client sent
HTTP/1.1 request without hostname (see RFC2068 section 9, and 14.23):
/chat/
[...]
[Sun Jun 20 12:38:17 1999] [error] [client 193.172.169.174] client sent
HTTP/1.1 request without hostname (see RFC2068 section 9, and 14.23):
/chat/
[Sun Jun 20 19:26:27 1999] [error] [client 212.64.7.78] client sent
HTTP/1.1 request without hostname (see RFC2068 section 9, and 14.23):
/chat/

Does anybody know of a new browser, not fully http/1.1 complaint ? or
any program wich does this behaivor ?
I don't feal comfortable about it

sometimes also a 
 [Sun Jun 20 12:38:17 1999] [error] [client 193.172.169.174] request
failed: error reading the header
is followed by it.

Regards,
	Reinder Kraaij

Re: cvs commit: apache-2.0/mpm/src Configuration.mpm

Posted by Dmitry Khrustalev <di...@bog.msu.su>.
On Sun, 20 Jun 1999, Ben Laurie wrote:

> jim@hyperreal.org wrote:
> > 
> > jim         99/06/19 15:16:04
> > 
> >   Modified:    mpm/src  Configuration.mpm
> >   Log:
> >   FreeBSD requires this to grab the thread
> >   lib for pthreads. Uncomment when trying on that
> 
> I used -lc_r - is there a difference?
> 
> Cheers,
> 
> Ben.
> 

    Well, -pthread is is equivalent to -nostdlib -lc_r. Right way is
cc -pthread -D_THREAD_SAFE , so you get thread-safe macros.

	-Dima