Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ././../../../../../../usr/lib/dtrace/pcap.d
Real path: /usr/lib/dtrace/pcap.d
Zurück
/* * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. */ #pragma D depends_on module unix #pragma D depends_on provider tcp /* * In general, PCAP_<type> names are chosen to match DL_<type> DLPI * datalink types. */ /* * Network-related capture types. PCAP_TCP seems like an obvious ommission, * but there is no DLT_TCP currently in libpcap sadly. */ inline int PCAP_NULL = 0; #pragma D binding "1.12" PCAP_NULL inline int PCAP_ETHER = 1; #pragma D binding "1.12" PCAP_ETHER inline int PCAP_WIFI = 105; #pragma D binding "1.12" PCAP_WIFI inline int PCAP_PPP = 9; #pragma D binding "1.12" PCAP_PPP /* PCAP_IP can signify IPv4 or IPv6 header follows. */ inline int PCAP_IP = 12; #pragma D binding "1.12" PCAP_IP /* Solaris IP Observability */ inline int PCAP_IPNET = 226; #pragma D binding "1.12" PCAP_IPNET /* InfiniBand-related capture types. */ inline int PCAP_IPOIB = 242; #pragma D binding "1.12" PCAP_IPOIB