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;
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();