if (!(a_tcp = find_stream(this_tcphdr, this_iphdr, &from_client))) {//没有找到
    if ((this_tcphdr->th_flags & TH_SYN) && //报文头SYN为1
 !(this_tcphdr->th_flags & TH_ACK) &&//报文头ACK为0
 !(this_tcphdr->th_flags & TH_RST))//报文头RST为0
      add_new_tcp(this_tcphdr, this_iphdr);//加入新包
    return;
  }

相关文章:

  • 2022-12-23
  • 2022-02-06
  • 2021-06-30
  • 2021-09-20
猜你喜欢
  • 2021-07-16
  • 2021-11-26
  • 2022-01-20
  • 2021-09-09
  • 2021-11-26
  • 2021-09-16
相关资源
相似解决方案