Sunday
Feb192012
SquidDisconnect
- Disconnects from SQUID.
- Before using SQUID again, SquidConnect must be called.
Prototype
int SquidDisconnect(int iSquid);
- Parameters
iSquid Squid Connection Handle
- Return Values
0 Operation successful <0 Error occurred
Example
int iSquid;
lr_load_dll("SQUID-REST.dll");
iSquid = SquidConnect("http://localhost:8000");
SquidCreateColumn(iSquid, "NewColumn");
SquidSendData(iSquid, "NewColumn", "20");
SquidDisconnect(iSquid);