Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../bin/.././lib/dtrace/net.d
Real path: /usr/lib/dtrace/net.d
Zurück
/* * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #pragma ident "%Z%%M% %I% %E% SMI" inline int AF_INET = 2; #pragma D binding "1.0" AF_INET inline int AF_INET6 = 26; #pragma D binding "1.0" AF_INET6 /* * The conninfo_t structure should be used by all application protocol * providers as the first arguments to indicate some basic information * about the connection. This structure may be augmented to accomodate * the particularities of additional protocols in the future. */ typedef struct conninfo { string ci_local; /* local host address */ string ci_remote; /* remote host address */ string ci_protocol; /* protocol (ipv4, ipv6, etc) */ } conninfo_t;