Skip to content

Releases: libnet/libnet

libnet v1.3

Choose a tag to compare

@github-actions github-actions released this 02 Oct 16:49

Note: MSYS2 and Cygwin builds for Windows do not work. Instead we
recommend msbuild (and npcap). If you are a Windows hacker and have
experience with MSYS2 and C, and want to help, please get in touch!

Changes

  • License change of critical files from 4-clause BSD to 3-clause and
    2-clause BSD. This fixes issue #85: "GPL license compatibility".
  • Migrate from Travis-CI (Linux) and Appveyor (Win32) to GitHub Actions
  • Win32 changes:
    • switch to npcap from winpcap
    • Simplify and update build scripts
    • Encode version in DLL instead of in filename

Valery Ivanov:

  • Add support for LLDP, mandatory TLVs.
  • Add support for Cisco UniDirectional Link Detection (UDLD), RFC5171
  • Initial support for unit tests:
    • libnet-build_ethernet()
    • Complete UDLD API tests
  • Initial "devcontainer": provide VS Code development environment for
    rapid setup of a development environment
  • Run unit tests in GitHub Actions
  • New GitHub Action for FreeBSD 13 clang/gcc

Beniamin Sandu:

  • Calling libnet_init() with a RAW type no longer sets a TX buffer max
    size. Use the new libnet_setfd_max_sndbuf() instead when needed.

Hervé Boisse:

  • Remove support for SOCK_PACKET sockets causing invalid builds on,
    e.g., musl libc. We assume everyone on Linux has PF_PACKET now.

Fixes

  • Fix #139: fail-to-build-from-source on FreeBSD

Valery Ivanov:

  • Fix #122: unused parameter warnings
  • Fix #123: potential memory leak in libnet_cq_add()
  • Fix #124: potential name conflict with C++ keyword new

Thomas Habets:

  • Fix #96: pointer type warnings when dumping raw data with %p
  • Fix #97: non-standard types:
    • int64_t instead of __int64_t for mingw cross build
    • uint32_t instead of u_int and uint16_t instead of u_short
  • Fix #98: lots of signed vs unsigned comparisons
  • Fix #102: possible buffer overflows in libnet_plist_chain_dump_string()

Bernhard M. Wiedemann:

  • Reproducible build fixes for man-page generation, use LC_ALL=C and UTC
  • Simplify fixmanpages

Adrian Reber:

  • Fix #120: possible NULL pointer dereference in libnet_cq_add()
  • Fix #120: memory leak in libnet_plist_chain_new()

Stephan Hartmann:

  • Fix segmentation fault in libnet_ifaddrlist()

Andy Roulin:

  • Fix #150: segfault when number of IPs > 512

libnet v1.2

Choose a tag to compare

@troglobit troglobit released this 16 Oct 14:19

Release curated by Sam Roberts and Joachim Nilsson.

Changes

  • Removed Lua bindings from repo and dist files, now available separately
  • Removed generated HTML and Nroff (man pages) documentation files, must be regenerated with Doxygen using make doc
  • Add pkg-config support with libnet.pc, replaces libnet-config tool, although it is kept for compatibility for now
  • Factorize socket setup code for socket opening to provide output device selection for IPv4
  • Make libnet_get_hwaddr() work with 802.1q interfaces in bpf (BSD)
  • New API for OSPF HELLO messages, with neighbor

Fixes

  • Use getifaddrs() on OpnBSD and Linux
  • For samples, netinet/in.h is not on windows
  • Fix errors with missing IPPROTO_MH on windows
  • Fix build error on Mac OS X
  • Fix #34 checksum caculation when IPv6 extension headers being used
  • Remove unneeded trailing -Wl from -version-info line
  • libnet_build_snmp() fix warning
  • Use LIBNET_*RESOLVE const in libnet_name2addr*
  • Fix i486 sample synflood6 warning
  • Some samples need #include<netinet/in.h> for IPPROTO_* on OpenBSD 5.2
  • Fix gcc warnings
  • Check for socklen_t. Suggested by g.esp and Stefanos Harhalakis
  • libnet: update for obsolete INCLUDE directive
  • Fix warning inside comment
  • Automatic link options #pragma comment(lib, ...) are only for MSVC
  • Fix several warnings for MS C/C++ compiler
  • libnet_open_raw4() doesn't return a SOCKET on win32
  • Fixes error messages sometimes include newline, sometimes not
  • Properly set l->err_buf if libnet_ifaddrlist() fails
  • dlpi: Try harder to find the device for the interface
  • dlpi: Correctly extract unit number from devices with numbers in their name
  • Make interface selection work for interfaces with multiple addresses
  • Fix memory leak, device list needs to freed after use
  • Fix file descriptor leak in libnet_ifaddrlist()
  • Fix libnet_get_hwaddr() for large(!) number of interfaces
  • Fix to support musl libc, removes support for GLIBC <2.1
  • Fix win32 buffer overrun in libnet_get_ipaddr4()
  • Interface selection was ignoring interfaces with IPv6
  • Use LIBNET_API on public functions, instead of an export file
  • Add Visual Studio 2010 project files, with build instructions
  • Define INET6 on IRIX, making libnet compile cleanly
  • Check for FreeBSD pre-11 before enabling LIBNET_BSD_BYTE_SWAP
  • Use LIBNET_BSDISH_OS and LIBNET_BSD_BYTE_SWAP on Darwin
  • Add BSD byteswap for Darwin. Otherwise sendto( returns EINVAL
  • netinet/in.h is needed for IPPROTO_ and sockaddr_in

libnet v1.2-rc4

libnet v1.2-rc4 Pre-release
Pre-release

Choose a tag to compare

@troglobit troglobit released this 09 Oct 05:48

Release curated by Sam Roberts and Joachim Nilsson.

Changes

  • Removed Lua bindings from repo and dist files, now available separately
  • Removed generated HTML and Nroff (man pages) documentation files, must be regenerated with Doxygen using make doc
  • Add pkg-config support with libnet.pc, replaces libnet-config tool, although it is kept for compatibility for now
  • Factorize socket setup code for socket opening to provide output device selection for IPv4
  • Make libnet_get_hwaddr() work with 802.1q interfaces in bpf (BSD)
  • New API for OSPF HELLO messages, with neighbor

Fixes

  • Use getifaddrs() on OpnBSD and Linux
  • For samples, netinet/in.h is not on windows
  • Fix errors with missing IPPROTO_MH on windows
  • Fix build error on Mac OS X
  • Fix #34 checksum caculation when IPv6 extension headers being used
  • Remove unneeded trailing -Wl from -version-info line
  • libnet_build_snmp() fix warning
  • Use LIBNET_*RESOLVE const in libnet_name2addr*
  • Fix i486 sample synflood6 warning
  • Some samples need #include<netinet/in.h> for IPPROTO_* on OpenBSD 5.2
  • Fix gcc warnings
  • Check for socklen_t. Suggested by g.esp and Stefanos Harhalakis
  • libnet: update for obsolete INCLUDE directive
  • Fix warning inside comment
  • Automatic link options #pragma comment(lib, ...) are only for MSVC
  • Fix several warnings for MS C/C++ compiler
  • libnet_open_raw4() doesn't return a SOCKET on win32
  • Fixes error messages sometimes include newline, sometimes not
  • Properly set l->err_buf if libnet_ifaddrlist() fails
  • dlpi: Try harder to find the device for the interface
  • dlpi: Correctly extract unit number from devices with numbers in their name
  • Make interface selection work for interfaces with multiple addresses
  • Fix memory leak, device list needs to freed after use
  • Fix file descriptor leak in libnet_ifaddrlist()
  • Fix libnet_get_hwaddr() for large(!) number of interfaces
  • Fix to support musl libc, removes support for GLIBC <2.1
  • Fix win32 buffer overrun in libnet_get_ipaddr4()
  • Interface selection was ignoring interfaces with IPv6
  • Use LIBNET_API on public functions, instead of an export file
  • Add Visual Studio 2010 project files, with build instructions
  • Define INET6 on IRIX, making libnet compile cleanly
  • Check for FreeBSD pre-11 before enabling LIBNET_BSD_BYTE_SWAP
  • Use LIBNET_BSDISH_OS and LIBNET_BSD_BYTE_SWAP on Darwin
  • Add BSD byteswap for Darwin. Otherwise sendto( returns EINVAL
  • netinet/in.h is needed for IPPROTO_ and sockaddr_in

libnet v1.2-rc3

libnet v1.2-rc3 Pre-release
Pre-release

Choose a tag to compare

@troglobit troglobit released this 29 Sep 17:24
  • Prepare for 1.2 release candidate 3 (Sam Roberts)
  • Remove obsolete SYMBOL_CACHE_SIZE from doxygen.conf (Sam Roberts)
  • For samples, netinet/in.h is not on windows (Sam Roberts)
  • Fix errors with missing IPPROTO_MH on windows (Sam Roberts)
  • Factorize socket setup code for socket opening (Eric Leblond)
  • Fix build error in Mac OS X (allfro)
  • Insource comments and whitespace cleanups (Sam Roberts)
  • Fix #34 correct checksum caculation when IPv6 extension headers being used (Alexander Koeppe)
  • Make libnet_get_hwaddr() work with 802.1q interfaces in bpf (BSD). (Thomas Habets)
  • Update libnet_dll.c (dlwdlw)
  • Update libnet_raw.c (dlwdlw)
  • Update CHANGELOG (Sam Roberts)
  • libnet: Remove unneeded trailing -Wl from -version-info line (Gilles Espinasse)
  • Prepare for 1.2 release candidate 2 (Sam Roberts)
  • libnet: libnet_build_snmp fix warning (Gilles Espinasse)
  • libnet: use LIBNET_RESOLVE const in libnet_name2addr (Gilles Espinasse)
  • libnet: fix i486 sample synflood6 warning (Gilles Espinasse)
  • Some samples need #include<netinet/in.h> for IPPROTO_* on OpenBSD 5.2 (Thomas Habets)
  • Better description of .so revioning. (Sam Roberts)
  • Fix gcc warnings. (Stefanos Harhalakis)
  • Use @RetVal for correct man page formatting. (Sam Roberts)
  • Hide undocumented in auto-generated documentation. (Sam Roberts)
  • Check for socklen_t (suggested by g.esp and Stefanos Harhalakis) (Sam Roberts)
  • Update to doxygen 1.8 (Sam Roberts)
  • Only distribute man pages for libnet headers. (Reported by g.esp) (Sam Roberts)
  • libnet: update for obsolete INCLUDE directive (Gilles Espinasse)
  • Fix warning inside comment (Gilles Espinasse)
  • Prepare for 1.2 release candidate. (Sam Roberts)
  • Bump libnet versions in preparation for 1.2 release. (Sam Roberts)
  • Cleaned up references to win32 pre-generated headers (Sam Roberts)
  • VERSION is ancient and unused (Barak A. Pearlmutter)
  • autoupdate configure.ac (Barak A. Pearlmutter)
  • Simplify autogen.sh (suggested by Barak A. Pearlmutter) (Sam Roberts)
  • Ignore doxygen javascript output (Sam Roberts)
  • remove autoreconf-installed file (Barak A. Pearlmutter)
  • Use +AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER (Sam Roberts)
  • Automatic link options ("#pragma comment(lib, ...)") are only for MSVC (ThomasVolkert)
  • Added guards around definitions of _GNU_SOURCE to avoid redefinitions (ThomasVolkert)
  • Avoids several warnings for MS C/C++ compiler (ThomasVolkert)
  • libnet_open_raw4 doesn't return a SOCKET on win32 (Sam Roberts)
  • Remove unused STDOUT_FILENO, and dead code that used to use it. (Sam Roberts)
  • Removed references to removed win32/in_systm.h (Sam Roberts)
  • git ignore doxygen output (Sam Roberts)
  • Remove automake reference to win32 header that has been removed. (Sam Roberts)
  • Fixes error messages sometimes include newline, sometimes not. (Sam Roberts)
  • Properly set l->err_buf if libnet_ifaddrlist() fails. (Thomas Habets)
  • Pass build errors to caller of batch files. (Sam Roberts)
  • dlpi: Try harder to find the device for the interface. (Thomas Habets)
  • dlpi: Correctly extract the unit number from devices with numbers in their name. (Thomas Habets)
  • Make interface selection work for interfaces with multiple addresses on them. (Sam Roberts)
  • memory leak fixed, device list needs to freed after use (Sam Roberts)
  • uint32 address properly initialized with an address (Sam Roberts)
  • Reformatted and commented win32 specific code. (Sam Roberts)
  • Interface selection was ignoring interfaces with ipv6. (Sam Roberts)
  • Use simple batch file to build for win32. (Sam Roberts)
  • Use LIBNET_API on public functions, instead of an export file. (Sam Roberts)
  • Note about libnet_get_prand being secure only on windows. (Sam Roberts)
  • ignore visual studio output artifacts (Sam Roberts)
  • Don't need iphlpapi.h included. (Sam Roberts)
  • Libnet.vcxproj file gained a ProjectGUID property. Hm. (Sam Roberts)
  • visual studio 2010 project files (Sam Roberts)
  • Convert uses of non-standard uint to uint32_t. (Sam Roberts)
  • Compiled on win32 with Visual Studio 2010. (Sam Roberts)
  • Add build instructions for Visual Studio 2010 (Sam Roberts)
  • Documentation typo, valid should be invalid. (Sam Roberts)
  • Replace usage of non-standard uint type with uint32_t. (Sam Roberts)
  • define INET6 on IRIX, making libnet compile cleanly. (Thomas Habets)
  • Use LIBNET_BSDISH_OS and LIBNET_BSD_BYTE_SWAP on all darwin architectures. (Kimmo Suominen)
  • Added BSD byteswap for Darwin. Otherwise sendto() returns EINVAL (Emilio Escobar)
  • Use a common header to trim cut and paste include blocks. (Sam Roberts)
  • netinet/in.h is needed for IPPROTO_ and sockaddr_in (reported by Dirk Meyer) (Sam Roberts)

libnet v1.1.6

Choose a tag to compare

@troglobit troglobit released this 29 Sep 17:16
  • Note about why including libnet.h breaks dnet.h/dumbnet.h (Sam Roberts)
  • Prepare for 1.1.6-rc3. (Sam Roberts)
  • Only use getifaddrs() if it exists. (reported by Dagobert Michelsen) (Sam Roberts)
  • Clean up use of single and bracket quotes. (Sam Roberts)
  • FreeBSD and Solaris volunteers to contibute. (Sam Roberts)
  • ICMPv6 struct is too long, so use length macro ([email protected]) (Sam Roberts)
  • ICMPv6 pblock sizes are needed to calculate IPv6's ip_len (reported by [email protected]) (Sam Roberts)
  • Prep for 1.1.6 release, such as bumping version (Sam Roberts)
  • Add people who have volunteered to check release candidates. (Sam Roberts)
  • Rework libnet_autobuild_ipv6() to eliminate code duplication. (Sam Roberts)
  • Implemented libnet_autobuild_ipv6() (repolho)
  • Implemented unix version of libnet_get_ipaddr6() (repolho)
  • Reintroduce libnet_pblock_record_ip_offset() which is empty. (Sam Roberts)
  • Make clear that all contributions are under libnet copyright. (Sam Roberts)
  • Fix doc comment format errors reported by doxygen. (Sam Roberts)
  • Update for doxygen 1.7.4. (Sam Roberts)
  • Note that PORTED is no longer maintained. (Sam Roberts)
  • Note that CONTRIB is no longer maintained. (Sam Roberts)
  • Prep for upcoming 1.1.6 release. (Sam Roberts)
  • Remove BUGS, it referred to non-existent code. (Sam Roberts)
  • Reworked icmpv6 patch to parallel the form of icmpv4 support. (Sam Roberts)
  • Don't depend on netinet/ip.h. (Sam Roberts)
  • Remove unused variable. (Sam Roberts)
  • Support building ICMPv6 packets. (someone)
  • Fixed typo in error message. (Thomas Habets)
  • Use SO_BINDTODEVICE to force packets out opened device. (someone)
  • Always use an IPPROTO of TCP when calculating TCP checksums. (Sam Roberts)
  • Use correct addr type for addrlen calculation. (someone)
  • libnet_build_igmp reserved field was mistakenly called 'code' (Sam Roberts)
  • Documentation doesn't include any gif files. (Sam Roberts)
  • Enable IPV6 support on Solaris 11. (Rich Burridge)
  • Trying to fix write errors (Víctor Martínez)
  • Presence of linux's PF_PACKET sockets is now detected. The acinclude.m4 merged in from packetfactory's 1.1.3-rc branch mysteriously assumed that that there was no PF_PACKET if the target OS was linux, which is the opposite of what we want. (Sam Roberts)
  • Fix libnet_build_igmp() to not reverse the order of the ip address. libnet APIs that take IP addresses as a uint32_t expect them to already be in network byte order. (Sam Roberts)
  • pblock_append deals with raw memory and structs, so declare it correctly (Sam Roberts)
  • Clarified types and sizes of DHCP/BOOTP chaddr, sname, and file. chaddr is a hardware address, with size specified seperately, whereas sname and file are null terminated strings. (Sam Roberts)
  • Explicitly ignore return value of write (some systems now warn about this). (Sam Roberts)
  • Synchronize comment about h_len with parameter name in function. (Sam Roberts)
  • Fixes a buffer overflow issue when copying chaddr, file, and sname fields to the DHCP header. (allfro)
  • Fixes improper calculation of header size when libnet_pblock_probe is called. payload_s must be added to the header length in order to accommodate for the existence of a non-NULL payload. Otherwise the user is prompted with a 'memcpy would cause overflow' error and the program exits. (allfro)
  • Fixes incorrect memory block size set in the timeexceed and redirect builders. The n variable does not add the size of the payload (payload_s) for proper allocation of the buffer when payload is not NULL and payload_s is greater than 0. This results in a memcpy buffer overflow error when libnet_pblock_append is called exiting the program. (allfro)
  • Fixes a bug that incorrectly converts the addr, mask, and next_hop fields to network byte order. Users will usually call libnet_name2addr4 to fill these fields and this function already provides a network byte-ordered value. (allfro)
  • snap parameter was getting copied into the dhost field. (Sam Roberts)
  • h_len is no longer used, so pass zero. Coverity noticed that stack garbage was being passed instead of a valid value, its just that the value isn't used, and incluing l->total_size is wrong when the pblock is being updated (though it will work on pblock creation). (Sam Roberts)
  • Length n should include the value_hdr. (Sam Roberts)
  • Coverity: UNINIT (Jiri Popelka)
  • Coverity: REVERSE_INULL (Jiri Popelka)
  • Coverity: RESOURCE_LEAK (Jiri Popelka)
  • Coverity: OVERRUN_STATIC (Jiri Popelka)
  • Coverity: OVERRUN_STATIC (Jiri Popelka)
  • Coverity: OVERRUN_STATIC (Jiri Popelka)
  • Coverity: FORWARD_NULL (Jiri Popelka)
  • Coverity: FORWARD_NULL (Jiri Popelka)
  • Coverity: CHECKED_RETURN (Jiri Popelka)
  • mkinstalldirs is replaced by autogen.sh. Maybe it shouldn't be checked in? (Sam Roberts)
  • autogen retries if /sw/... doesn't exist (Sam Roberts)
  • build_ipv6: set higher traffic class bits (Ulrich Weber)
  • Fix missing uint instead of u_int (Dagobert Michelsen)

libnet v1.1.5

Choose a tag to compare

@troglobit troglobit released this 29 Sep 17:18
  • IRIX: Get MAC address from ioctl(), not by spawning shell. (Thomas Habets)
  • Compile fix for IRIX (added includes) (Thomas Habets)
  • Don't explicitly check for UID 0, we may have capabilities even if not root. (Thomas Habets) (Sam Roberts)
  • Cleaned up implementations of libnet_get_hwaddr(), some leaked memory, one returned a pointer to data on the stack, and the others return a pointer to static data. I'm settling on the non-reentrant static data form. (Sam Roberts)
  • Visual C++ compiler(v9.0) uses bitfield type as a hint to pad the bitfield, so struct was too long. (Sam Roberts)
  • Further simplify autogen.sh (Sam Roberts)
  • Removed dependency on net/bpf.h, and on pcap.h. (Sam Roberts)
  • LBL_ALIGN check is unused, removing. (Sam Roberts)
  • Don't include pcap.h if we've already got net/bpf.h, pcap has it's own bpf. (Sam Roberts)
  • Make libnet_get_hwaddr work in the last few releases of OpenBSD ([email protected]) (Sam Roberts)
  • Get DLT types from the source, <pcap.h>. (Sam Roberts)
  • Use autoconf -ivf in autogen.sh (suggested by [email protected]) (Sam Roberts)
  • Don't distribute libnet.h, it is generated by configure ([email protected]) (Sam Roberts)
  • AIX build failures fixed, cause was inclusion of system headers libnet no longer uses ([email protected]) (Sam Roberts)
  • Add a link to the old docs. (Sam Roberts)
  • Added links to github and sourceforge. (Sam Roberts)
  • Replace C99/C++ comments with traditional C comments. ([email protected]) (Sam Roberts)
  • checksum would segfault if a IP checksum was requested for a non-ipv4 header (Sam Roberts)
  • Closer backwards compat, assume its ipv4 if it's not ipv6. This seems totally wrong, but so it goes. (Sam Roberts)
  • Try using the ip_len header field to guess the input buffer's size. (Sam Roberts)
  • libnet_do_checksum(), despite being "internal", is used by external code. libnet needs to maintain backwards API compatibility, tcpsic from the isic package is an example of a binary failing when calling the new API with the old arguments. (Sam Roberts)
  • merged icmpv6 patch in, but I believe either it or the sample/icmp6_unreach generates the cksum incorrectly ([email protected]) (Sam Roberts)
  • Use libtool-1 or libtool-2 whatever available ([email protected]) (Sam Roberts)
  • Avoid looking at /dev and /usr/include when cross-compiling ([email protected]) Alon: The following code support cross compiling: 1. You CANNOT check for /usr/include stuff as cross compiler is installed else-where. Autoconf know how to do this, use its header detection logic and ask the result. 2. Testing for /dev/ can be done only when not cross compiling... (Sam Roberts)
  • Corrected target_os check, it was broke for linuxgnu, and m4 syntax was invalid ([email protected]) Alon:The following change is needed in order to solve two issues: 1. linuxgnu and such target os. 2. You cannot set variable with space before '=' as it tries to execute the variable... 3. Print result of test in case of linux (Sam Roberts)
  • --with-link-layer broken, was using wrong macro name, and didn't include all link types (Sam Roberts)
  • ac_cv_c_bigendian is yes, not "big" ([email protected]) (Sam Roberts)
  • Remove dead code. (Sam Roberts)
  • h_len is calculated for ip, udp, tcp, icmp, and igmp, so is allowed to be zero. (Sam Roberts)
  • libnet_t's fd should be initialized to an invalid value, or libnet_destroy() will close stdin. (Sam Roberts)
  • Alon's use of AC_CHECK_HEADERS fails to detect headers. Reverted part of 57acd56 (Sam Roberts)
  • With link_none, the link apis were failing with not error message. (Sam Roberts)
  • man doc makefile wasn't correctly referring to the srcdir ([email protected]) (Sam Roberts)
  • Avoid mallocing zero bytes, it perturbs electric fence. (Sam Roberts)
  • autotools patches for cross compiling and seperate builddir ([email protected]) (Sam Roberts)
  • html doc makefile wasn't correctly referring to the srcdir ([email protected]) (Sam Roberts)
  • ip_offset is now calculated on the fly, and UDP and TCP no longer use h_len (Sam Roberts)
  • IP offset calculation should allow nesting of IP protocols. (Sam Roberts)
  • Remove gccisms in bitfield definitions. (Sam Roberts)
  • injection type of LIBNET_NONE, for packet construction without injection (also, more const correctness) (Sam Roberts)
  • Notes about checksumming. (Sam Roberts)
  • libnet_build_tcp was not returning the ptag. (Sam Roberts)
  • Packet boundaries are now passed to _do_checksum(), so it can validate its input. Hopefully, this will end the recurring segmentation faults due to buffer overruns. (Sam Roberts)
  • TCP building is triggering memory overwrites; closer examination shows the link list manipulation to be wrong, and the checksumming approach to be incapable of working. I reworked code to simplify and clarify how it works currently, in preparation to fixing it. (Sam Roberts)
  • Updated comments and notes. (Sam Roberts)
  • Null the pointer in the about-to-be-freed structure, not the one on the stack. (Sam Roberts)
  • Added missing pblock types, and made strings consistent with definitions. (Sam Roberts)
  • Change version policy, we will be 1.1.4 until 1.1.5 is released. (Sam Roberts)
  • Bring CHANGELOG up to date with today, and script used to generated it. (Sam Roberts)
  • Begin implementation and tests for repairing pblocks after an update. (Sam Roberts)
  • libnet_pblock_insert_before() didn't remove ptag2 from old location (Sam Roberts)
  • Clarifications in document comments. (Sam Roberts)
  • Don't doxygen process internal header libnet-headers.h (Sam Roberts)
  • Declared many constant arguments as const, const-correct code spews warnings when built against libnet. (Sam Roberts)
  • Include pcap DLT_ types from correct header, was using an internal one before. (Sam Roberts)
  • Declared many constant arguments as const, const-correct code spews warnings when built against libnet. (Sam Roberts)
  • Note about build_data, which doesn't update ip_offset, among other problems. (Sam Roberts)
  • libnet_clear_packet() wasn't clearing all packet context. (Sam Roberts)
  • Why don't TCP and UDP use the DATA pblock type? (Sam Roberts)
  • whitespace cleanup (Sam Roberts)
  • Add libnet_dll.c as extra, so its there for win32, and build libnet_link.c (Sam Roberts)
  • This file wasn't being built, and needed to include bpf to build. (Sam Roberts)
  • Forgot to make device a const string here, too. (Sam Roberts)
  • make string argument constant (Sam Roberts)
  • only ignore Makefile in libnet/ (Sam Roberts)
  • Replace u_intX_t with C99 uintX_t. (Thomas Habets)
  • pclose() following popen(), not fclose() (Thomas Habets)
  • snoof & dlpi: don't free on libnet_link_close() (Thomas Habets)
  • Summarize changes for log. (Sam Roberts)
  • Reindented, removing hard tabs, and using consistent brace positioning. (Sam Roberts)
  • The non-standard types are no longer used. (Sam Roberts)
  • /sw/.. path doesn't always exist (Sam Roberts)
  • src/libnet_link_snoop.c: Only fclose if f!=NULL (Thomas Habets)
  • src/libnet_link_snoop.c: fixed snoop-based backend. Works on IRIX. (Thomas Habets)
  • Use uint64_t, not u_int64_t (Thomas Habets)
  • define a lying gethostbyname2() if it's not defined (Thomas Habets)
  • define STDOUT_FILENO if it's not defined (Thomas Habets)
  • configure.in: check for gethostbyname2 (Thomas Habets)
  • configure.in: Check for uint{16,32,64}_t (Thomas Habets)
  • Configure switch to install samples (Sam Roberts)
  • Attempt at applying a patch to get installable samples, which doesn't work. (Sam Roberts)
  • Pointers not cleared after free could lead to double deallocation. (Sam Roberts)
  • Convert CRLF to LF. (Sam Roberts)
  • Auto* changes to work on OS X from git checkout. (Sam Roberts)
  • Update autobuild endianness and unaligned checks. (Mike Frysinger) (Sam Roberts)
  • Add srcdir to include path. (Sam Roberts)
  • Adjust srcdir and builddir so libnet can build out-of-tree (Robin Getz/Mike Frysinger) (Sam Roberts)
  • Beginning 1.1.5 development. (Sam Roberts)

libnet v1.1.4

Choose a tag to compare

@troglobit troglobit released this 29 Sep 17:19

libnet v1.1.3

Choose a tag to compare

@troglobit troglobit released this 29 Sep 17:22

Merged 1.1.3 release candidate from packet factory, 1.1.2, debian patches, and
my own fixes, including bugs causing memory corruption: