|
||||||
|
|
*header:name=value |
Set a Request header to a specified value. For instance, use *header:Cache-Control=no-cache to indicate that a server or proxy should not return a cached response. Leave the value blank to delete the named header. |
Error #3 Fixed in version 1.0.4
On Page 184, the SendDataStruct structure definition is missing the specification of the character set used to marshal the structure. This could cause the string to be interpreted incorrectly as ANSI instead of Unicode.
[StructLayout(LayoutKind.Sequential,
CharSet=CharSet.Unicode)]
internal struct SendDataStruct
{
public
IntPtr dwData;
public
int cbData;
public
string strData;
}
Error #4 Fixed in version 1.0.4
On Page 99, the flag value was set incorrectly. Instead of:
oSession["x-OverrideGateway"] = "127.0.0.1:8111";
it should be:
oSession["x-OverrideGateway"] = "socks=127.0.0.1:8118";
For the errata listed above, please note: