1
0
Fork 0

plib-1.8.0 no longer defines the cchar type (which we used because we were

deriving a class and the base class used this type.)  Return to using
const char and hope people compiling against earlier versions of plib
have compilers that think typedef const char cchar; char *abc; is equivalent
to const char *abd;
This commit is contained in:
curt 2004-03-22 15:00:42 +00:00
parent f08625d64d
commit ba840da288

View file

@ -40,13 +40,13 @@ class HTTPClient : public netBufferChannel
public:
HTTPClient ( cchar* host, int port, cchar* path ) :
HTTPClient ( const char* host, int port, const char* path ) :
done( false )
{
open ();
connect (host, port);
cchar* s = netFormat ( "GET %s HTTP/1.0\r\n\r\n", path );
const char* s = netFormat ( "GET %s HTTP/1.0\r\n\r\n", path );
bufferSend( s, strlen(s) ) ;
start.stamp();