aboutsummaryrefslogtreecommitdiff
path: root/src/pdesc.c
Commit message (Collapse)AuthorAge
* fixed unaligned pointer access to packed memberlns2020-06-22
| | | | | | | | pdesc.c:233:2: warning: converting a packed ‘icmp_echo_packet_t’ pointer (alignment 1) to a ‘uint16_t’ {aka ‘short unsigned int’} pointer (alignment 2) may result in an unaligned pointer value [-Waddress-of-packed-member] 233 | pkt->checksum = htons(calc_icmp_checksum((uint16_t*)pkt, pkt_len)); | ^~~
* re-enabled and improved logging of packet headers and payload (SEND)Toni Uhlig2020-05-27
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Got rid of those non working extended options, because:removed_extended_optionsToni Uhlig2020-03-22
| | | | | | | | | | | * legendary spaghetti code * did not work at all, caused several buffer overflows * pain-in-the-ass to maintain and test * badly reviewed from my side :/ * improved and working "extended options" may be added later * basically reverts most of #8 Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* typ0s fixedToni Uhlig2019-09-09
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* refactored queue_packet by shrinking the function signature to the minimaToni Uhlig2019-09-09
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* fix leaky ringsMasaq-2019-02-20
|
* command line option -y payload sizeMasaq-2019-02-08
|
* Merge branch 'master' into extended-optionsMasaq-2019-02-03
|\
| * trimmed xfr debug output + icmp id/seq output, replaced invalid UTF8 char 'oe'lns2019-01-29
| | | | | | | | Signed-off-by: lns <matzeton@googlemail.com>
* | short command line options -w -a -tMasaq-2019-01-30
| |
* | require authenticationMasaq-2019-01-30
| |
* | extend the protocol to load options from the data sectionMasaq-2019-01-28
|/
* fixed some bugs that can lead to remove segfaultselnerd2019-01-16
|
* copyright updateToni Uhlig2019-01-08
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Coverity CID 301768: added socket() error handlingToni Uhlig2018-07-15
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Coverity CID 301772: fixed memory leak when icmp pkt could not sendToni Uhlig2018-07-13
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* updated copyright informationsToni Uhlig2018-07-11
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* ptunnel-ng:Toni Uhlig2017-12-19
| | | | * mingw __attribute__
* ptunnel-ng:Toni Uhlig2017-12-18
* this is now an autotools project (added/renamed required files e.g. AUTHORS, COPYING) * removed user defined ip header (buggy; not useful anymore)