readme.legacy-applications

来自「libnet的unix/linux版本」· LEGACY-APPLICATIONS 代码 · 共 30 行

LEGACY-APPLICATIONS
30
字号
===============================================================================    LIBNET 1.0 (c) 1998 - 2001 Mike D. Schiffman <mike@infonexus.com>                               http://www.packetfactory.net/libnet===============================================================================    All legacy applications written on top of libnet that have NOT been    modified to make use of the libnet-config script will fail.  This is    because as of version 0.99e libnet needs to have an endian-ness defined    (handled by the script).  You'll know you have this problem if you see an    error like:/usr/include/libnet.h:89: #error "byte order has not been specified, you'llneed to #define either LIBNET_LIL_ENDIAN or LIBNET_BIG_ENDIAN.  See thedocumentation regarding the libnet-config script."    To remedy this, add to your Makefile something like:DEFINES     =  `libnet-config --defines` <OTHER_DEFINES_HERE...>    Or, if you're compiling at the command line, simply do something like:host:~> gcc -Wall `libnet-config --defines` foo.c `libnet-config --libs`    For more information on the libnet-config script, see README.libnet-config.    Furthermore, as of 1.0, no legacy naming nomenclature will be supported.EOF

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?