Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: fusl/arch/generic/bits/socket.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 struct msghdr 1 struct msghdr {
2 { 2 void* msg_name;
3 » void *msg_name; 3 socklen_t msg_namelen;
4 » socklen_t msg_namelen; 4 struct iovec* msg_iov;
5 » struct iovec *msg_iov; 5 int msg_iovlen;
6 » int msg_iovlen; 6 void* msg_control;
7 » void *msg_control; 7 socklen_t msg_controllen;
8 » socklen_t msg_controllen; 8 int msg_flags;
9 » int msg_flags;
10 }; 9 };
11 10
12 struct cmsghdr 11 struct cmsghdr {
13 { 12 socklen_t cmsg_len;
14 » socklen_t cmsg_len; 13 int cmsg_level;
15 » int cmsg_level; 14 int cmsg_type;
16 » int cmsg_type;
17 }; 15 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698