Re: More neat stuff
Chris Hawks <[email protected]> Mon, 27 May 2002 11:47:28 -0500 (EST)
| Newsgroups | gmane.comp.web.viewml.devel |
|---|---|
| Message-ID | <[email protected]> |
---Reply to mail from Hu Xiang Hua about More neat stuff
>>---On Sat, 23 Feb 2002 11:21:08 -0500 (EST), Chris Hawks said
>>I also forgot to mention that libhttp 0.3 is out on www.softorchestra.com
>>and doesn't need the patches that I posted previously.
>
> one more question:
> in viewml/src/http.c , HTTPConnection::HTTPConnection() and
> HTTPConnection::~HTTPConnection() call some functions like HT***, and ld
> couldn"t find where those HT**** are defined . May I "//" the calls ? Or
> does it mean some libwww***s should still be used?
> Thanks in advance!
Yes, you can comment them out. The only things needed in in the
constructor and destructor are:
HTTPConnection::HTTPConnection()
{
pthread_mutex_init(&m_ListLock, 0);
m_bThreadRunning = false;
m_pDocCallback = 0;
}
HTTPConnection::~HTTPConnection()
{
pthread_mutex_destroy(&m_ListLock);
}
---End reply
Christopher R. Hawks
HAWKSoft
-------------------------------------------------------------------------
They say never to buy a "0" release of software.
Windows 2000 has 3 of 'em.
#############################################################
This message is sent to you because you are subscribed to
the mailing list <[email protected]>.
To unsubscribe, E-mail to: <[email protected]>
To switch to the DIGEST mode, E-mail to <[email protected]>
To switch to the INDEX mode, E-mail to <[email protected]>
Send administrative queries to <[email protected]>