| // SPDX-License-Identifier: LGPL-2.1 |
| /* |
| * trace/beauty/socket.c |
| * |
| * Copyright (C) 2018, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> |
| */ |
| |
| #include "trace/beauty/beauty.h" |
| #include <sys/types.h> |
| #include <sys/socket.h> |
| |
| static size_t socket__scnprintf_ipproto(int protocol, char *bf, size_t size, bool show_prefix) |
| { |
| #include "trace/beauty/generated/socket_ipproto_array.c" |
| static DEFINE_STRARRAY(socket_ipproto, "IPPROTO_"); |
| |
| return strarray__scnprintf(&strarray__socket_ipproto, bf, size, "%d", show_prefix, protocol); |
| } |
| |
| size_t syscall_arg__scnprintf_socket_protocol(char *bf, size_t size, struct syscall_arg *arg) |
| { |
| int domain = syscall_arg__val(arg, 0); |
| |
| if (domain == AF_INET || domain == AF_INET6) |
| return socket__scnprintf_ipproto(arg->val, bf, size, arg->show_string_prefix); |
| |
| return syscall_arg__scnprintf_int(bf, size, arg); |
| } |