Reinhard Foerster wrote:
Warum in die Ferne schweifen? Aus /usr/include/netinet/ip_icmp.h
Als C-unkundiger für mich nicht so naheliegend.
/*
- Definition of type and code field values.
*/ #define ICMP_ECHOREPLY 0 /* echo reply */ #define ICMP_UNREACH 3 /* dest unreachable, codes: */ #define ICMP_UNREACH_NET 0 /* bad net */ #define ICMP_UNREACH_HOST 1 /* bad host */ #define ICMP_UNREACH_PROTOCOL 2 /* bad protocol */ #define ICMP_UNREACH_PORT 3 /* bad port */ #define ICMP_UNREACH_NEEDFRAG 4 /* IP_DF caused drop */ #define ICMP_UNREACH_SRCFAIL 5 /* src route failed */ #define ICMP_SOURCEQUENCH 4 /* packet lost, slow down */ ...
Zumindest diese Zeilen hier machen mich auch nicht schlauer. Aber ich glaube die nachfolgenden könnten interessanter werden. ;-)
Rico