Search results

  1. inetplumber

    Solved [Solved] Creating and transmitting raw IP packets

    Re: Creating and transmitting raw IP packets That did it! Thanks for your help. Here's to more network programming in 2014!
  2. inetplumber

    Solved [Solved] Creating and transmitting raw IP packets

    Re: Creating and transmitting raw IP packets Thanks for pointing out that manpage, that's illuminating more aspects of raw IP packet creation in FreeBSD. I modified the two packet fields to be set to host byte order as indicated. ip_len = ntohs(20); ip_off = ntohs(0); Still getting the...
  3. inetplumber

    Solved [Solved] Creating and transmitting raw IP packets

    My goal is to create an IP packet with just headers and no payload. I am using http://www.enderunix.org/docs/en/rawipspoof/ as a guide. The current issue is that I cannot appease sendto() and I'm not sure how to get more verbose feedback on which parameter is invalid and how it is invalid...
Back
Top