[go: up one dir, main page]

File: recv.c

package info (click to toggle)
trinity 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,252 kB
  • ctags: 2,738
  • sloc: ansic: 24,011; sh: 322; makefile: 141
file content (29 lines) | stat: -rw-r--r-- 675 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
   asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
                            unsigned flags)

 */
#include <sys/socket.h>
#include "compat.h"
#include "sanitise.h"

struct syscall syscall_recv = {
	.name = "recv",
	.num_args = 4,
	.arg1name = "fd",
	.arg1type = ARG_FD,
	.arg2name = "ubuf",
	.arg2type = ARG_ADDRESS,
	.arg3name = "size",
	.arg3type = ARG_LEN,
	.arg4name = "flags",
	.arg4type = ARG_LIST,
	.arg4list = {
		.num = 20,
		.values = { MSG_DONTWAIT, MSG_ERRQUEUE, MSG_ERRQUEUE,
			    MSG_ERRQUEUE, MSG_OOB, MSG_PEEK, MSG_TRUNC,
			    MSG_WAITALL, MSG_EOR, MSG_TRUNC, MSG_CTRUNC,
			    MSG_OOB, MSG_ERRQUEUE },
	},
	.flags = NEED_ALARM,
};