summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix sign mismatch in getsockopt() optlencleanupsSam Roberts2019-09-301-1/+1
| | | | | Modern systems declare this as `.. socklen_t)`, but older systems don't use that. Use unsigned because its at least sign-compatible.
* Remove unused variablesSam Roberts2019-09-302-19/+1
|
* Update .gitignore: ignore GCC gcno coverageSam Roberts2019-09-301-0/+1
|
* Improve formatting of NOTEJoachim Nilsson2019-09-291-3/+3
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Link to projects using libnet, and update/add referencesJoachim Nilsson2019-09-291-11/+25
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* doc: Remove html from dist, also remove from configure.acJoachim Nilsson2019-09-291-1/+0
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* doc: Remove html from dist, created by doxygenJoachim Nilsson2019-09-292-3/+1
| | | | | | | | Only generated man pages are included in the distribution tarballs, for now. The Debian package can generate a libnet1-doc package, but there is also the online docs at https://codedocs.xyz/libnet/libnet/ Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* doc/api: Remove generated files, from @sgeto master mergeJoachim Nilsson2019-09-2938-12082/+0
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* appveyor: Try relative path to msvcbuild.batJoachim Nilsson2019-09-291-2/+2
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* README: Indent **NOTE:** to be easier to read renderedJoachim Nilsson2019-09-291-2/+2
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* appveyor: Enclose build commands in quotes for %~dp0Joachim Nilsson2019-09-291-2/+2
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Sync TODO files, removing top-level oneJoachim Nilsson2019-09-292-44/+24
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Relocate scripts/ to bin/ and .bat file to win32/Joachim Nilsson2019-09-2914-22/+22
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Add basic building instructions and delete separate build guide docJoachim Nilsson2019-09-292-80/+42
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Old README replaced with README.mdJoachim Nilsson2019-09-291-46/+0
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Add banner link to autogenerated CodeDocsJoachim Nilsson2019-09-291-1/+3
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Update generated man pagesJoachim Nilsson2019-09-293-35/+35
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Update and add .gitignore filesJoachim Nilsson2019-09-292-0/+11
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Simplify and clean up top Makefile.am a bitJoachim Nilsson2019-09-292-46/+20
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* doc: Clean up libnet-config and generated html filesJoachim Nilsson2019-09-296-531/+5
| | | | | | | - Remove last traces of libnet-config tool - Remove generated HTML files Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Split .gitignore in sub-directories and clean up a bitJoachim Nilsson2019-09-294-58/+56
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Simplify CodeDocs generation of https://codedocs.xyz/libnet/libnet/Joachim Nilsson2019-09-292-96/+1
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Generate Doxyfile from configure script to handle out-of-tree buildsJoachim Nilsson2019-09-296-74/+42
| | | | | | | | | | - Relocate doc/libnet.doxygen.conf --> Doxgen.in - Clean up duplicate DX_INIT_DOXYGEN() from configure.ac - Simplify Makefile.am - Disable PDF and CHM files by default - ax_prog_doxygen.m4: Don't remove doc/ before building doc/ Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* autogen.sh: Remove script debugging and rebuild if possibleJoachim Nilsson2019-09-291-5/+6
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* src: libnet_link_snoop.c: Fix more #endifs than #ifdefsJoachim Nilsson2019-09-291-5/+2
| | | | | | Found in https://codedocs.xyz/libnet/libnet.log Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Give codedocs.xyz its own namespaced Doxyfile, disabled for nowJoachim Nilsson2019-09-292-0/+193
| | | | | | Try to use only the .codedocs file, as it seems to be all CodeDocs needs. Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Doxyfile: Update paths to new directory layout fo r codedocs.xyzJoachim Nilsson2019-09-291-13/+13
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Follow-up to e4fb7e9, remove COPYING from doc/Joachim Nilsson2019-09-281-2/+2
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Relocate some docs to doc/Joachim Nilsson2019-09-282-0/+0
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Relocate license file to top directoryJoachim Nilsson2019-09-282-8/+5
| | | | | | | | - Move to top directory, where GitHub looks for it - Name the file LICENSE, COPYING is customary for GPL'ed works - Adjust file header to match standard BSD 2-clause style Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Adjust path to Appveyor statusJoachim Nilsson2019-09-281-2/+2
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* appveyor: Adjust project path for new directory structureJoachim Nilsson2019-09-281-1/+1
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Travis-CI: Homebrew packages are out-of-date, always updateJoachim Nilsson2019-09-281-0/+1
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Travis-CI: Fix macOS build, s/brew/homebrew/Joachim Nilsson2019-09-281-1/+1
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* doc: Fix doxygen buildJoachim Nilsson2019-09-282-2/+2
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* doc: Drop unknown HTML_DYNAMIC_MENUS doxygen settingJoachim Nilsson2019-09-281-1/+0
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Revert previous add, generated from fixmanpages.inJoachim Nilsson2019-09-281-72/+0
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Always generate win32/Makefile, used for make dist targetJoachim Nilsson2019-09-281-1/+2
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Add missing fixmanpages script, lost after big mergeJoachim Nilsson2019-09-281-0/+72
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Manual update of generated man pagesJoachim Nilsson2019-09-285-4046/+89
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Travis-CI: Enforce Ubuntu 18.04 to get newer autotoolsJoachim Nilsson2019-09-281-0/+2
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Overhaul new README.md; promote GitHub and simplifyJoachim Nilsson2019-09-281-26/+31
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Add m4 macros missing from big merge, lost because of .gitignoreJoachim Nilsson2019-09-282-2/+329
| | | | Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
* Merge branch 'sgeto-master'Joachim Nilsson2019-09-28130-2472/+26285
|\
| * Merge branch 'master' of https://github.com/sgeto/libnet into sgeto-masterJoachim Nilsson2019-09-28130-2472/+26285
| |\ |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: .gitignore .travis.yml BUILD-FROM-GIT.txt Makefile.am Makefile.am.common Prepare acinclude.m4 autogen.sh configure.ac doc/html/Makefile.am doc/html/closed.png doc/html/globals_func.html doc/html/tab_s.png doc/libnet.doxygen.conf doc/man/Makefile.am doc/man/man3/Makefile.am doc/man/man3/libnet-functions.h.3 doc/man/man3/libnet-macros.h.3 include/libnet.h include/libnet/Makefile.am libnet/acinclude.m4 libnet/libnet-config.in libnet/m4/acinclude.m4 lua/Makefile lua/msvcbuild.bat sample/Makefile.am scripts/Push src/libnet_link_win32.c win32/Makefile.am
| * Fixed merge conflictAli Abdulkadir2018-11-235-6/+11
| |\
| * | Use C99 type __int64_t in libnet-structures.hAli Abdulkadir2018-11-221-3/+3
| | |
| * | Fixed (minor) error/typo in Makefile.amAli Abdulkadir2018-11-221-1/+1
| | |
| * | Travis: Move build steps from "install" to "script"Ali Abdulkadir2018-06-111-3/+2
| | |
| * | Windows: Include pcap.h only when building libnetAli Abdulkadir2018-06-111-9/+2
| | |