summaryrefslogtreecommitdiff
path: root/net.c
Commit message (Expand)AuthorAgeFilesLines
* Replace HAVE_GETRVAL2 with HAVE_ARCH_GETRVAL2Dmitry V. Levin2018-01-211-1/+1
* net: fix SOL_NETLINK NETLINK_LIST_MEMBERSHIPS decodingDmitry V. Levin2017-11-161-13/+39
* net: fix decoding of optval argument of [gs]etsockopt SOL_NETLINKDmitry V. Levin2017-11-161-0/+14
* net: decode optname argument of [gs]etsockopt for SOL_NETLINK levelDmitry V. Levin2017-11-151-1/+5
* Mpersify struct group_reqDmitry V. Levin2017-07-091-17/+0
* net: enhance decoding of MCAST_JOIN_GROUP/MCAST_LEAVE_GROUPDmitry V. Levin2017-07-091-9/+7
* net: hook up MCAST_JOIN_GROUP/MCAST_LEAVE_GROUP decoding for SOL_IPV6Dmitry V. Levin2017-07-091-0/+6
* net: enhance decoding of IP_ADD_MEMBERSHIP et al socket optionsDmitry V. Levin2017-07-091-20/+14
* net: enhance decoding of setsockopt's SO_LINGER negative option lengthDmitry V. Levin2017-07-091-8/+6
* Intorduce PRINT_FIELD_SOCKADDRDmitry V. Levin2017-07-091-2/+1
* print_sockaddr: remove "struct tcb *" argumentDmitry V. Levin2017-07-091-1/+1
* net: use PRINT_FIELD_* macrosDmitry V. Levin2017-07-091-13/+15
* Intorduce PRINT_FIELD_INET4_ADDRDmitry V. Levin2017-07-091-4/+3
* Intorduce PRINT_FIELD_IFINDEXDmitry V. Levin2017-07-091-3/+1
* Intorduce PRINT_FIELD_INET_ADDRDmitry V. Levin2017-07-091-3/+1
* net: move print_ifindex to a separate fileDmitry V. Levin2017-07-091-16/+0
* net: move parsers of bind, listen, and shutdown to separate filesDmitry V. Levin2017-07-091-31/+0
* net: accept arbitrary option length for getsockopt's SO_PEERCREDDmitry V. Levin2017-07-081-8/+20
* Implement decoding of linux socket filter programsDmitry V. Levin2017-07-081-0/+19
* net: accept arbitrary option length for getsockopt's SO_LINGERDmitry V. Levin2017-07-081-4/+30
* net: accept large option length for SO_LINGERDmitry V. Levin2017-07-081-2/+3
* net: fix printing of struct linger's field namesDmitry V. Levin2017-07-081-3/+5
* net: enhance decoding of getsockopt's optlen argumentDmitry V. Levin2017-07-081-5/+20
* net: move printing of [gs]etsockopt's socklen argument to toplevel parsersDmitry V. Levin2017-07-081-15/+13
* Include "netlink.h" instead of <linux/netlink.h>Dmitry V. Levin2017-06-251-1/+1
* print_mreq: remove superfluous print_quoted_string callsDmitry V. Levin2017-06-161-7/+4
* Introduce print_inet_addrDmitry V. Levin2017-06-151-15/+8
* Add file descriptor argument to decode_netlinkFabien Siron2017-06-051-1/+1
* Move netlink_protocols definition from net.c to netlink.cDmitry V. Levin2017-06-041-1/+0
* Add copyright headersEugene Syromyatnikov2017-05-221-0/+1
* Automatically replace PRI_kr[dux] with PRI_kl[dux]Dmitry V. Levin2016-12-261-7/+7
* Automatically replace kernel_(scno|ureg)_t with kernel_ulong_tDmitry V. Levin2016-12-261-15/+15
* Print kernel_ureg_t and kernel_scno_t using dedicated format stringsDmitry V. Levin2016-12-261-7/+7
* decode_sockbuf: change addrlen argument type from long to kernel_ureg_tDmitry V. Levin2016-12-251-1/+1
* printstr: rename to printstrn, add printstr as a thin wrapperDmitry V. Levin2016-12-251-5/+5
* net: change address argument type from long to kernel_ureg_tDmitry V. Levin2016-12-251-15/+21
* net: change address argument type from unsigned long to kernel_ureg_tDmitry V. Levin2016-12-231-2/+2
* xlat: provide fallback definitions for NETLINK_* constantsv4.15Dmitry V. Levin2016-12-141-4/+0
* Use tprints instead of tprintf in a few more placesDmitry V. Levin2016-10-021-1/+1
* Unabuse struct tcb.auxstrDmitry V. Levin2016-07-181-8/+4
* net.c: move parsers of sendmsg and recvmsg syscalls to msghdr.cDmitry V. Levin2016-07-181-43/+0
* net.c: move parsers of sendmmsg and recvmmsg syscalls to mmsghdr.cDmitry V. Levin2016-07-181-75/+0
* Fix decoding of struct msghdr.msg_name* arguments of recvmsg syscallDmitry V. Levin2016-07-131-7/+21
* Fix printing of socklen argument of bind and sendto syscallsDmitry V. Levin2016-07-121-4/+6
* Fix decoding of sockaddr related arguments of recvfrom syscallDmitry V. Levin2016-07-121-7/+25
* Print both values of changing address length in sockname family syscallsDmitry V. Levin2016-07-121-1/+1
* Enhance diagnostics of address truncation in sockname family syscallsDmitry V. Levin2016-07-121-1/+4
* Fix decoding of getsockname, getpeername, accept, and accept4 syscallsDmitry V. Levin2016-07-121-8/+27
* Prepare parsers of sockname family syscalls for the upcoming fixDmitry V. Levin2016-07-111-12/+12
* Add a general netlink socket parserFabien Siron2016-07-071-6/+22