1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| int post(int argc, char** argv)
{
............
postURL( ......);
}
postURL( char* url, char* referer, char* user_agent, char* auth_token, char* cookie, char** args, int argc )
{
.....
char host[2000];
.....
postURLbyParts( ...... );
}
postURLbyParts( int protocol, char* host, int port, char* file, char* referer,
char* user_agent, char* auth_token, char* cookie, char** args, int argc )
{
......
char head_buf[10000];
char data_buf[50000];
char enc_buf[5000];
............ |
Partager