Discussion:
More neat stuff
Hu Xiang Hua
2002-05-27 07:19:16 UTC
Permalink
---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!

_________________________________________________________________
与联机的朋友进行交流,请使用 MSN Messenger:
http://messenger.microsoft.com/cn


#############################################################
This message is sent to you because you are subscribed to
the mailing list <viewml-***@viewml.com>.
To unsubscribe, E-mail to: <viewml-devel-***@viewml.com>
To switch to the DIGEST mode, E-mail to <viewml-devel-***@viewml.com>
To switch to the INDEX mode, E-mail to <viewml-devel-***@viewml.com>
Send administrative queries to <viewml-devel-***@viewml.com>
Chris Hawks
2002-05-27 16:47:28 UTC
Permalink
---Reply to mail from Hu Xiang Hua about More neat stuff
Post by Hu Xiang Hua
---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.
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 <viewml-***@viewml.com>.
To unsubscribe, E-mail to: <viewml-devel-***@viewml.com>
To switch to the DIGEST mode, E-mail to <viewml-devel-***@viewml.com>
To switch to the INDEX mode, E-mail to <viewml-devel-***@viewml.com>
Send administrative queries to <viewml-devel-***@viewml.com>
Continue reading on narkive:
Loading...