repo.or.cz
/
systemd_ALT.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1:255.13-alt1
[systemd_ALT.git]
/
coccinelle
/
htonl.cocci
blob
c247d24e9bc6bf49238f6dddd7d781f6ae6e42d8
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
@@
3
expression s;
4
@@
5
- htonl(s)
6
+ htobe32(s)
7
@@
8
expression s;
9
@@
10
- htons(s)
11
+ htobe16(s)
12
@@
13
expression s;
14
@@
15
- ntohl(s)
16
+ be32toh(s)
17
@@
18
expression s;
19
@@
20
- ntohs(s)
21
+ be16toh(s)