mirror of
https://passt.top/passt
synced 2024-12-22 05:35:23 +00:00
passt: Use INET{,6}_ADDRSTRLEN instead of open coded sizeof
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
f435e38927
commit
d32edee60a
4
passt.c
4
passt.c
@ -498,9 +498,9 @@ void usage(const char *name)
|
||||
*/
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
char buf6[3][sizeof("0123:4567:89ab:cdef:0123:4567:89ab:cdef")];
|
||||
char buf4[4][sizeof("255.255.255.255")];
|
||||
struct epoll_event events[EPOLL_EVENTS];
|
||||
char buf6[3][INET6_ADDRSTRLEN];
|
||||
char buf4[4][INET_ADDRSTRLEN];
|
||||
struct epoll_event ev = { 0 };
|
||||
struct timespec last_time;
|
||||
struct ctx c = { 0 };
|
||||
|
Loading…
Reference in New Issue
Block a user