summaryrefslogtreecommitdiff
path: root/net.c
Commit message (Expand)AuthorAgeFilesLines
* alpha, ia64, mips, sh*, sparc*: fix error path decoding of pipe syscallDmitry V. Levin2016-02-131-10/+7
* Fix dumping of recvmmsg syscall in case of short readDmitry V. Levin2016-01-201-2/+2
* Fix dumping of recvmsg syscall in case of short readDmitry V. Levin2016-01-201-2/+2
* net: fix printing of IP_RECVOPTS/IP_RETOPTS cmsg optionsDmitry V. Levin2015-11-221-1/+1
* Implement IPPROTO_IP control messages decodingDmitry V. Levin2015-11-221-0/+136
* Simplify control messages printersDmitry V. Levin2015-11-221-24/+23
* net: factor out address printing code to a separate functionDmitry V. Levin2015-11-211-113/+95
* printcmsghdr: move type and data decoders to a separate functionDmitry V. Levin2015-11-191-40/+45
* Assume that libc provides sendmsgDmitry V. Levin2015-11-181-11/+1
* net.c: move fallback definition of SCM_SECURITY to xlat/Dmitry V. Levin2015-11-181-3/+0
* Convert another parser of struct timespec to new mpers infrastructureDmitry V. Levin2015-09-191-8/+7
* decode extend getsockopt/setsockopt optionsMike Frysinger2015-08-261-5/+26
* pipe, pipe2, socketpair: print returned descriptors using printfdDmitry V. Levin2015-08-031-5/+26
* socket: mark return code with RVAL_FD flagDmitry V. Levin2015-08-031-1/+1
* net.c: use printaddrDmitry V. Levin2015-07-301-7/+3
* net.c: recvfrom fixesDenys Vlasenko2015-07-301-9/+17
* Alias sys_connect to sys_bindDmitry V. Levin2015-07-201-5/+0
* net.c: make use of RVAL_DECODEDDmitry V. Levin2015-07-201-85/+77
* net.c: use printaddr and umove_or_printaddrDmitry V. Levin2015-07-201-59/+37
* Use printpair_intDmitry V. Levin2015-07-091-20/+5
* Consistenly use #ifdef to check for AC_DEFINE'd macrosDmitry V. Levin2015-06-171-1/+1
* net: move fallback definitions of SOL_* constants to xlat/Dmitry V. Levin2015-06-171-99/+0
* net: decode setsockopt() multicast argumentsDmitry V. Levin2015-06-081-0/+81
* net: factor out interface index printing codeDmitry V. Levin2015-06-051-23/+24
* Introduce memory allocation wrappersDmitry V. Levin2015-05-251-1/+1
* Declare syscall parsers using SYS_FUNC macroDmitry V. Levin2015-04-071-42/+21
* alpha, ia64, sh, sparc, sparc64: fix pipe and pipe2 syscalls decodingDmitry V. Levin2015-03-231-11/+12
* Change last parameter of umoven() from char* to void*Denys Vlasenko2015-03-211-2/+2
* print_setsockopt: fix fall-through bug in SOL_IP switch caseDmitry V. Levin2015-02-081-0/+1
* net.c: remove unused HAVE_SIN6_SCOPE_ID_LINUX-based codeDmitry V. Levin2015-01-311-27/+0
* printsock: do not fetch sockaddr.sa_data twiceDmitry V. Levin2015-01-301-2/+2
* setsockopt: add decoding of MCAST_JOIN_GROUP and MCAST_LEAVE_GROUPDmitry V. Levin2015-01-301-0/+60
* printsock: print the whole sockaddr_un.sun_pathDmitry V. Levin2015-01-291-2/+2
* printsock: do not fetch sockaddr_un.sun_path twiceDmitry V. Levin2015-01-291-2/+6
* net: define all SOL_* constantsDmitry V. Levin2015-01-291-79/+126
* setsockopt: decode PACKET_ADD_MEMBERSHIPDmitry V. Levin2015-01-291-1/+32
* getsockopt, setsockopt: do not decode structures in non-verbose modeDmitry V. Levin2015-01-291-206/+225
* sendmsg: do not decode msghdr in non-verbose modeDmitry V. Levin2015-01-281-2/+2
* printsock: quote network interface namesDmitry V. Levin2015-01-261-2/+7
* Rework string_quote APIDmitry V. Levin2015-01-261-9/+3
* Impove struct cmsghdr decodingDmitry V. Levin2015-01-241-58/+122
* Fix ILP32 personality struct cmsghdr decoding on LP64 architecturesDmitry V. Levin2015-01-241-20/+65
* Fix build on systems that lack NETLINK_SOCK_DIAG definitionDmitry V. Levin2015-01-091-1/+4
* Alias sys_getpeername to sys_getsocknameDmitry V. Levin2014-12-021-6/+0
* Include <sys/uio.h> unconditionallyDmitry V. Levin2014-11-211-3/+1
* Add functions for dumping iovecs in mmsghdr used in sendmmsg and recvmmsgMasatake YAMATO2014-11-111-28/+45
* Use the definition of struct mmsghdr if it is defined in build environmentMasatake YAMATO2014-11-111-4/+8
* Introduce a separate function to copy from msghdr32 to msghdrMasatake YAMATO2014-11-111-7/+15
* Dump details for Bluetooth socket operationsLubomir Rintel2014-11-041-0/+42
* Add a function for dumping iovec in msghdr used in sendmsg and recvmsgMasatake YAMATO2014-11-011-19/+33