Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v4.4 #1

Merged
merged 28 commits into from
Oct 4, 2022
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0701264
Assign a PDUType for Dot11ControlTA
mfontanini Sep 10, 2020
5b082a8
Merge pull request #420 from mfontanini/control-ta-fix
mfontanini Sep 10, 2020
f46dee9
Add changelog for version 4.3
mfontanini Sep 18, 2020
0774a8d
Bump version to 4.4 in CMakeLists.txt
mfontanini Sep 18, 2020
94939dd
Added RFC8355 ICMP Extended Echo support
theDogOfPavlov Dec 29, 2020
553b1fb
Added RFC8335 Extended Echo types
theDogOfPavlov Dec 29, 2020
b3d874d
Merge pull request #426 from theDogOfPavlov/master
mfontanini Dec 29, 2020
1166094
Fix infinite loop when querying BSD routing table
nhutchinson-te Jan 4, 2021
cd40b23
Merge pull request #427 from nhutchinson-te/bsd-routing-table
mfontanini Jan 5, 2021
468159e
Close socket when setsockopt fails
visuve Mar 4, 2021
b447c66
Merge pull request #433 from visuve/master
mfontanini Mar 6, 2021
222611b
Fix wrong address endian
ceerRep Mar 24, 2021
e90e377
Merge pull request #437 from ceerRep/master
mfontanini Mar 28, 2021
16f5795
Fix getter being labeled as setter in dns header file comments
adriancostin6 Apr 23, 2021
5858132
Merge pull request #439 from adriancostin6/dns-comment-fix
mfontanini May 14, 2021
c20c82b
Fix pointer loop bug and add descriptive exceptions
gaya-cohen May 24, 2021
1650b60
change counter variable type and add exception description comment
gaya-cohen May 24, 2021
ed2b3c1
Make new exceptions inherit from malformed_packet and change exceptio…
gaya-cohen Jun 9, 2021
137b56d
fix exception inheritance and change exception names in DNS code
gaya-cohen Jun 9, 2021
14bb185
Merge pull request #444 from gaya-cohen/decompression-bug-fix
mfontanini Jun 9, 2021
a619e4f
IPv6 use interface when sending to link-local dest
fluke-pvan Jul 21, 2021
24ac038
Merge pull request #448 from FlukeCorp/link-local-uses-interface
mfontanini Jul 23, 2021
177d0b4
Fix conflict between variable and macro name
demiquartz Oct 31, 2021
3b006c1
Merge pull request #458 from demiquartz/fix-macro-name-conflict
mfontanini Jan 30, 2022
e3aedc5
Update CHANGES.md for v4.4
mfontanini Feb 17, 2022
5c2b224
Merge tag 'v4.4'
joy4eg Oct 4, 2022
0771b00
Use CMAKE_INSTALL_LIBDIR in CONF_CMAKE_INSTALL_DIR
cottsay May 4, 2022
78058cb
spec: update
joy4eg Oct 4, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make new exceptions inherit from malformed_packet and change exceptio…
…n names
  • Loading branch information
gaya-cohen committed Jun 9, 2021
commit ed2b3c12d5c95b4ea8c12c2bac2efd7f32af0d03
8 changes: 4 additions & 4 deletions include/tins/exceptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,17 @@ class malformed_packet : public exception_base {
/**
* \brief Exception thrown when a DNS decompression pointer is out of bounds.
*/
class DNS_decompression_pointer_out_of_bounds : public exception_base {
class dns_decompression_pointer_out_of_bounds : public malformed_packet {
public:
DNS_decompression_pointer_out_of_bounds() : exception_base("DNS decompression pointer out of bounds") { }
dns_decompression_pointer_out_of_bounds() : exception_base("DNS decompression: pointer out of bounds") { }
};

/**
* \brief Exception thrown when a DNS decompression pointer loops.
*/
class DNS_decompression_pointer_loops : public exception_base {
class dns_decompression_pointer_loops : public malformed_packet {
public:
DNS_decompression_pointer_loops() : exception_base("DNS decompression pointer loops") { }
dns_decompression_pointer_loops() : exception_base("DNS decompression: pointer loops") { }
};

/**
Expand Down