mailing list of musl libc
 help / color / mirror / code / Atom feed
2264679e66cdc4c241b90b0c635cd3583ce1c1bf blob 1011 bytes (raw)

 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 
struct msghdr
{
	void *msg_name;
	socklen_t msg_namelen;
	struct iovec *msg_iov;
	int msg_iovlen;
	void *msg_control;
	socklen_t msg_controllen;
	int msg_flags;
};

struct cmsghdr
{
	socklen_t cmsg_len;
	int cmsg_level;
	int cmsg_type;
};

#define SOCK_STREAM    2
#define SOCK_DGRAM     1

#define SOL_SOCKET     65535

#define SO_DEBUG        1
#define SO_REUSEADDR    4
#define SO_TYPE         0x1008
#define SO_ERROR        0x1007
#define SO_DONTROUTE    16
#define SO_BROADCAST    32
#define SO_SNDBUF       0x1001
#define SO_RCVBUF       0x1002
#define SO_KEEPALIVE    8
#define SO_OOBINLINE    256
#define SO_RCVBUFFORCE  33

#define SO_NO_CHECK     11
#define SO_PRIORITY     12
#define SO_LINGER       128
#define SO_BSDCOMPAT    14
#define SO_REUSEPORT    512
#define SO_PASSCRED     17
#define SO_PEERCRED     18
#define SO_RCVLOWAT     0x1004
#define SO_SNDLOWAT     0x1003
#define SO_RCVTIMEO     0x1006
#define SO_SNDTIMEO     0x1005

#define SOCK_NONBLOCK     0200
#define SOCK_CLOEXEC  02000000
debug log:

solving 2264679 ...
found 2264679 in https://inbox.vuxu.org/musl/1398649434-23560-1-git-send-email-raj.khem@gmail.com/
found ba79045 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 ba790452bfc88e17473f17c313ce27de9d8e402d	arch/mips/bits/socket.h

applying [1/1] https://inbox.vuxu.org/musl/1398649434-23560-1-git-send-email-raj.khem@gmail.com/
diff --git a/arch/mips/bits/socket.h b/arch/mips/bits/socket.h
index ba79045..2264679 100644

Checking patch arch/mips/bits/socket.h...
Applied patch arch/mips/bits/socket.h cleanly.

index at:
100644 2264679e66cdc4c241b90b0c635cd3583ce1c1bf	arch/mips/bits/socket.h

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).