On Mon, Jan 06, 2003 at 06:42:26PM -0800, Lev Walkin wrote:
> Consider using libpcap - this is the portable library that uses
> bpf, raw socket, packet socket or whatever packets source is available
> for the particular platform.
>
> Pcap tutorial available here:
> http://reactor-core.org/securit
Abdul Basit wrote:
Hello,
I was trying to learn raw sockets, I wrote a simple program
to get all icmp packets and display ..
-- program
int
main(void)
{
int sockfd;
int ip_len;
char*buf;
int n;
struct icmp
Hello,
I was trying to learn raw sockets, I wrote a simple program
to get all icmp packets and display ..
-- program
int
main(void)
{
int sockfd;
int ip_len;
char*buf;
int n;
struct icmp*icmp;
s