• 解析http302重定向url


    bool urlparse(const u_char* data,u_int len)
    {
    ip_header *ih;
    udp_header *uh;
    tcp_header *th;
    u_short sport,dport;
    int ip_len = 0;
    ih = (ip_header *)(data+0xE);
    ip_len = (ih->ver_ihl & 0xf) * sizeof(unsigned long);
    th = (tcp_header *) ((u_char*)ih + ip_len);
    sport = ntohs( th->th_sport );
    dport = ntohs( th->th_dport );

    if ((ih->proto != IPPROTO_TCP))
    return false;

    std::string strdata((char*)th + sizeof(tcp_header),len - ip_len - sizeof(tcp_header)+1);

    static char szTag0[] = "HTTP/1.1 302 Moved Temporarily ";
    static char szTag1[] = "Location: ";
    static char szTag2[] = " ";

    size_t nP0 = strdata.find(szTag0);
    if (nP0 == std::string::npos)
    return false;

    size_t nP1 = strdata.find(szTag1,nP0+strlen(szTag0));
    if (nP1 == std::string::npos)
    return false;

    size_t nP2 = strdata.find(szTag2,nP1+strlen(szTag1));
    if (nP2 == std::string::npos)
    return false;

    std::string strUrl = strdata.substr(nP1+strlen(szTag1),nP2-nP1-strlen(szTag1));

    printf("url>%s ",strUrl.c_str());

    return true;
    }
  • 相关阅读:
    系统安全及应用
    进程和计划任务管理
    Java技术体系
    开机十步和进程管理
    Raid
    LVM逻辑卷
    sed命令
    磁盘管理
    你的背景,是这个时代 张璁
    别将梦想停留在二十岁
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/4500159.html
Copyright © 2020-2023  润新知