17 lines
232 B
C++
17 lines
232 B
C++
#include <iostream>
|
|
#include "tcp_connection.h"
|
|
|
|
#include "socksproxyclient.h"
|
|
|
|
int main()
|
|
{
|
|
TCP_Connection connection(1024);
|
|
|
|
connection.connectTo("127.0.0.1", 2000);
|
|
connection.sendMessage("GET ");
|
|
|
|
|
|
|
|
return 0;
|
|
}
|