hi
i see now thanks for info tym100
http://aa.vslib.cz/silk/projekty/mute/index.phpi have a modify mute mfc core source the
webclient.cppit now works with a http proxy i added there
127.0.0.1:8118then when you are using
tor + privoxy then can be connect anonymous to webcaches.
only when
tor + privoxy is running!
when is not running then uses without proxy.
modifyd code in WebClient.cpp:
/* silk-mod-start
HostAddress *host = new HostAddress(
stringDuplicate( serverNameCopy ),
portNumber ); silk-mod-end*/
HostAddress *host = new HostAddress(
stringDuplicate( "127.0.0.1" ),
8118 );
Socket *sock = SocketClient::connectToServer( host );
char *finalURL = stringDuplicate( inURL );
char *mimeType = NULL;
int receivedLength = 0;
if( sock != NULL ) {
SocketStream *stream = new SocketStream( sock );
// method and trailing space need to be sent in the same
// buffer to work around a bug in certain web servers
char *methodWithSpace = new char[ strlen( inMethod ) + 2 ];
sprintf( methodWithSpace, "%s ", inMethod );
// send the request
stream->writeString( methodWithSpace );
/*silk-mod-start stream->writeString( getPath ); silk-mod-end*/
stream->writeString( inURL );
stream->writeString( " HTTP/1.0\r\n" );
stream->writeString( "Host: " );
stream->writeString( serverNameCopy );
stream->writeString( "\r\n\r\n" );

Download win32 MUTE-MFC http proxy Edition :
MFC_MUTE.zip