-
Notifications
You must be signed in to change notification settings - Fork 0
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
bellma
committed
Jun 9, 2022
1 parent
6c6f14d
commit bcaca53
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
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 +1,14 @@ | ||
import cpp | ||
|
||
class NetworkByteSwap extends Expr { | ||
NetworkByteSwap () { | ||
exists(MacroInvocation m | | ||
m.getMacroName() in ["ntohs", "ntohl", "ntohll"] and | ||
this = m.getExpr() | ||
) | ||
} | ||
} | ||
|
||
from NetworkByteSwap n | ||
select n, "Network byte swap" | ||
|
bcaca53
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1 query changed between
6c6f14d
andbcaca53
after push torefs/heads/main
:9_class_network_byteswap.ql
Results for
9_class_network_byteswap.ql
: correct (107 results)bcaca53
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Congratulations, looks like the query you introduced for step 9 finds the correct results!
Merge this Pull Request (unless you're on main), and take a look at the instructions for the next step to continue.