--- icmptx-0.2.orig/debian/changelog +++ icmptx-0.2/debian/changelog @@ -0,0 +1,11 @@ +icmptx (0.2-1build1) bionic; urgency=high + + * No change rebuild to pick up -fPIE compiler default + + -- Balint Reczey Tue, 03 Apr 2018 12:28:37 +0000 + +icmptx (0.2-1) unstable; urgency=low + + * Initial release (Closes: #518779) + + -- Runa Sandvik Tue, 14 Apr 2009 20:08:55 +0200 --- icmptx-0.2.orig/debian/compat +++ icmptx-0.2/debian/compat @@ -0,0 +1 @@ +7 --- icmptx-0.2.orig/debian/control +++ icmptx-0.2/debian/control @@ -0,0 +1,16 @@ +Source: icmptx +Section: net +Priority: extra +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Runa Sandvik +Build-Depends: cdbs, debhelper (>= 7) +Standards-Version: 3.8.1 +Homepage: http://github.com/jakkarth/icmptx + +Package: icmptx +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Tunnel IP over ICMP + ICMPTX is a program that allows a user with root privledges to create a + virtual network link between two computers, encapsulating data inside of + ICMP packets. --- icmptx-0.2.orig/debian/copyright +++ icmptx-0.2/debian/copyright @@ -0,0 +1,35 @@ +This package was debianized by Runa Sandvik on +Tue, 14 Apr 2009 20:08:55 +0200. + +It was downloaded from http://github.com/jakkarth/icmptx + +Copyright (C) 2008-2009 John Plaxco + +Copyright: + + The code for the ICMP handling was originally included from the + itunnel program. Tun interface handling was included from the + VTun project, originally authored by Maxim Krasnyansky. The two + were brought together by edi / teso. From there, Siim Põder cleaned + up the code and wrote a short article about it. That seems to be how + Thomer Gil found it, after which he further cleaned it up and presented + it at http://thomer.com/icmptx/, which is where John Plaxco came across it. + Further and newer information may be available at the project's homepage. + +License: + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this ICMPTX. If not, see . + +On Debian systems, the complete text of the GNU General +Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. --- icmptx-0.2.orig/debian/dirs +++ icmptx-0.2/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- icmptx-0.2.orig/debian/docs +++ icmptx-0.2/debian/docs @@ -0,0 +1 @@ +README --- icmptx-0.2.orig/debian/rules +++ icmptx-0.2/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/makefile.mk + +# Add here any variable or target overrides you need. + +DEB_INSTALL_MANPAGES_icmptx=icmptx.1 + +install/icmptx:: + cp icmptx debian/icmptx/usr/bin --- icmptx-0.2.orig/icmptx.1 +++ icmptx-0.2/icmptx.1 @@ -0,0 +1,31 @@ +.TH icmptx 1 +.SH NAME +icmptx - Tunnel IP over ICMP +.SH SYNOPSIS +icmptx +[ +.B \-s +| +.B \-c +] +server + +.SH DESCRIPTION +.I icmptx +allows you to pass IP packets via ICMP. Say that you are sitting +in a cafe and you want to use the wireless network, but it costs +money. If that network allows ICMP traffic (i.e. you can ping machines +on the Internet), icmptx is your friend. +.SH OPTIONS +.TP +.B -s +Server mode +.TP +.B -c +Client mode +.TP +.B server +The host name or IP address of the server +.SH AUTHOR +This manual page was written by Runa Sandvik , +for the Debian GNU/Linux system (but may be used by others).