-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
306 additions
and
211 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ dhcpoptinj.prerm.debhelper | |
dhcpoptinj.substvars | ||
files | ||
debhelper-build-stamp | ||
.debhelper | ||
dhcpoptinj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
dhcpoptinj (0.4.2-1) unstable; urgency=medium | ||
* Update debian/control | ||
* Add copyright file | ||
* Bash completion for both long and short options | ||
* Add man page | ||
* Update usage string | ||
* Fix compiler warnings (pedantic signed/unsigned issues and void function | ||
declarations) | ||
|
||
-- Andreas Misje <[email protected]> Thu, 17 Jan 2019 08:45:35 +0100 | ||
|
||
dhcpoptinj (0.4.1-1) unstable; urgency=low | ||
* Update version number in --version output | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
Source: dhcpoptinj | ||
Maintainer: Andreas Misje <[email protected]> | ||
Section: net | ||
Priority: extra | ||
Homepage: http://github.com/misje/dhcpoptinj | ||
Build-Depends: debhelper (>= 9), libnetfilter-queue-dev (>= 1) | ||
Priority: optional | ||
Standards-Version: 3.9.8 | ||
Homepage: https://github.com/misje/dhcpoptinj | ||
Vcs-Git: git://github.com/misje/dhcpoptinj | ||
Build-Depends: debhelper (>= 9~), libnetfilter-queue-dev (>= 1) | ||
|
||
Package: dhcpoptinj | ||
Architecture: any | ||
Depends: ${misc:Depends}, ${shlibs:Depends} | ||
Recommends: iptables-persistent | ||
Description: DHCP option injector | ||
dhcpoptinj is a simple utility for injecting DHCP options into DHCP packets. | ||
dhcpoptinj is implemented using netfilter-queue. | ||
It is implemented using netfilter-queue and mangles packets, either by | ||
inserting new options or replacing existing options. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
|
||
Files: * | ||
Copyright: Copyright (c) 2013–2019, Andreas Misje | ||
License: GPL-3.0-only |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
docs/dhcpoptinj.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
#!/usr/bin/make -f | ||
%: | ||
dh $@ --parallel --buildsystem=cmake --builddirectory=build --with bash-completion | ||
dh $@ --parallel --buildsystem=cmake --builddirectory=build --with bash-completion | ||
|
||
override_dh_auto_configure: | ||
dh_auto_configure -- --no-warn-unused-cli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (quilt) |
Oops, something went wrong.