• 大小: 10KB
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-01-09
  • 语言: 其他
  • 标签: c++  

资源简介

亲测好用,挺不错的资源,大家快来下载吧!挺有用的!需要的话可以来下载哦!可以拿到满分的网络代理,采用读者优先的方式避免竞争,避免了pipe broken造成的服务器中断。

资源截图

代码片段和文件信息

#include 
#include “csapp.h“
#include 

//the const variable below are requested in the reference
static const char *user_agent_hdr = “User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.3) Gecko/20120305 Firefox/10.0.3\r\n“;
static const char *connect_hdr = “Connection: close\r\n“;
static const char *proxy_hdr = “Proxy-Connection: close\r\n“;

static const char *connection_key = “Connection“;
static const char *user_agent_key= “User-Agent“;
static const char *proxy_connection_key = “Proxy-Connection“;
static const char *host_key = “Host“;

//the micro below show some string type and cache size
#define EOF_TYPE 1
#define HOST_TYPE 2
#define OTHER_TYPE 3
#define MAX_CACHE_SIZE 1049000
#define MAX_object_SIZE 102400
#define CACHE_NUM 10

int getType(char *buf);
void doit(in

评论

共有 条评论