Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../sbin/../include/net/if_pflog.h
Real path: /usr/include/net/if_pflog.h
Zurück
/* * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. */ #ifndef _IF_PFLOG_H_ #define _IF_PFLOG_H_ /* * Solaris components can't include net/pfvar.h directly as the 3rd party file * requires special macros to be defined at compile time. We don't want to * modify Solaris makefiles for components, which are going to include pfvar.h. * Instead those components should include this file, which will do all magic * for them. * * We also carefuly undefine stuf, which we defined here. */ #ifndef _SOLARIS_ #define _SOLARIS_ #define UNDEF_SOLARIS #endif /* _SOLARIS_ */ #ifndef _PF_SMP_ #define _PF_SMP_ #define UNDEF_PF_SMP #endif /* _PF_SMP_ */ #ifndef INET6 #define INET6 #define UNDEF_INET6 #endif /* INET6 */ #ifndef INET #define INET #define UNDEF_INET #endif /* INET */ #ifdef _KERNEL #ifndef WITH_PFINSTANCES #define WITH_PFINSTANCES #define UNDEF_WITH_PFINSTANCES #endif /* WITH_PFINSTANCES */ #endif /* _KERNEL */ /* * IFNAMSIZ must be available, hence we are including net/if.h here. */ #include <net/if.h> #include <net/impl/if_pflog.h> #ifdef UNDEF_SOLARIS #undef _SOLARIS_ #undef UNDEF_SOLARIS #endif /* UNDEF_SOLARIS */ #ifdef UNDEF_PF_SMP #undef _PF_SMP_ #undef UNDEF_PF_SMP #endif /* UNDEF_PF_SMP */ #ifdef UNDEF_INET6 #undef INET6 #undef UNDEF_INET6 #endif /* UNDEF_INET6 */ #ifdef UNDEF_INET #undef INET #undef UNDEF_INET #endif /* UNDEF_INET */ #ifdef UNDEF_WITH_PFINSTANCES #undef WITH_PFINSTANCES #undef UNDEF_WITH_PFINSTANCES #endif /* UNDEF_WITH_PFINSTANCES */ #endif /* _IF_PFLOG_H_ */