I should amend what I said before... HTTP in mozilla is on one thread.
Callbacks originating from the socket
transport thread are proxied over to the main thread using events.
Therefore, redirects and pipelining are not
thread safety issues in mozilla. They would be an issue if HTTP were
cal
I can't comment about nsCategoryManager since that doesn't belong to
networking, but what ruslan mentions below is significant. Currently,
HTTP is not thread safe. That is, it is not safe to make HTTP requests
from multiple threads. This is a serious problem because requests can
be triggere
Even after N6 release, I still receive the assert for the nsCategoryManager
not thread-safe. Anyone know if this is on the radar to be fixed? Bugzilla
bug# 54639
"Ruslan Belkin" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> Carolyn Truc Tran wrote:
>
> > Hi,
> >
> > What would