Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. struct send_tcp
  2. {
  3. struct iphdr ip;
  4. struct tcphdr tcp;
  5. } send_tcp;
  6.  
  7. send_tcp.ip.ttl = 64;
  8. send_tcp.ip.tot_len = htons(40);
  9.  
  10. send_tcp s_tcp;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement