Changeset 3679
- Timestamp:
- 2005年04月10日 20時25分39秒 (4 years ago)
- Files:
-
- branches/2.2/nt/ChangeLog.Meadow (modified) (1 diff)
- branches/2.2/nt/inc/arpa/inet.h (modified) (1 diff)
- branches/2.2/nt/inc/netdb.h (modified) (1 diff)
- branches/2.2/nt/inc/netinet/in.h (modified) (1 diff)
- branches/2.2/nt/inc/sys/dir.h (modified) (1 diff)
- branches/2.2/nt/inc/sys/file.h (modified) (1 diff)
- branches/2.2/nt/inc/sys/ioctl.h (modified) (1 diff)
- branches/2.2/nt/inc/sys/param.h (modified) (1 diff)
- branches/2.2/nt/inc/sys/socket.h (modified) (3 diffs)
- branches/2.2/nt/inc/sys/time.h (modified) (2 diffs)
- branches/2.2/nt/inc/unistd.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.2/nt/ChangeLog.Meadow
r3660 r3679 1 2005-04-10 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * inc/arpa/inet.h: Sync up with Emacs CVS. 4 5 * inc/netdb.h: Ditto. 6 7 * inc/netinet/in.h: Ditto. 8 9 * inc/sys/dir.h: Ditto. 10 11 * inc/sys/file.h: Ditto. 12 13 * inc/sys/ioctl.h: Ditto. 14 15 * inc/sys/param.h: Ditto. 16 17 * inc/sys/socket.h: Ditto. 18 19 * inc/sys/time.h: Ditto. 20 21 * inc/unistd.h: Ditto. 22 1 23 2005-03-26 MIYOSHI Masanori <miyoshi@meadowy.org> 2 24 branches/2.2/nt/inc/arpa/inet.h
r3104 r3679 1 1 /* null version of <arpa/inet.h> - <sys/socket.h> has everything */ 2 3 /* arch-tag: 13c7a7f7-40d0-49e8-bdfb-6dcf2f3a7340 4 (do not change this comment) */ branches/2.2/nt/inc/netdb.h
r3104 r3679 1 1 /* null version of <netdb.h> - <sys/socket.h> has everything */ 2 3 /* arch-tag: 237ba543-97e2-4bd5-9c9c-32271d955eb1 4 (do not change this comment) */ branches/2.2/nt/inc/netinet/in.h
r3104 r3679 1 1 /* null version of <netinet/in.h> - <sys/socket.h> has everything */ 2 3 /* arch-tag: 49ff589e-100e-4f8f-8b2a-1c3b542590df 4 (do not change this comment) */ branches/2.2/nt/inc/sys/dir.h
r3104 r3679 4 4 5 5 #include "..\..\..\src\ndir.h" 6 7 /* arch-tag: 090c9091-3b16-429b-9c40-8aecce1162be 8 (do not change this comment) */ branches/2.2/nt/inc/sys/file.h
r3104 r3679 10 10 #define D_OK 8 11 11 #endif 12 13 /* arch-tag: 7df3e73e-56bc-4ad9-b699-33149ea47959 14 (do not change this comment) */ branches/2.2/nt/inc/sys/ioctl.h
r3104 r3679 4 4 * compiler will pick this up empty header instead. 5 5 */ 6 7 /* arch-tag: c6e9015a-930a-4ad3-b368-ac32f84475d7 8 (do not change this comment) */ branches/2.2/nt/inc/sys/param.h
r3104 r3679 9 9 10 10 #endif /* _PARAM_H_ */ 11 12 /* arch-tag: b1d90296-ec38-4839-83bd-0ddfd2528435 13 (do not change this comment) */ branches/2.2/nt/inc/sys/socket.h
r3104 r3679 82 82 #define gethostname sys_gethostname 83 83 #define gethostbyname sys_gethostbyname 84 #define getpeername sys_getpeername 84 85 #define getservbyname sys_getservbyname 85 86 #define shutdown sys_shutdown 87 #define setsockopt sys_setsockopt 88 #define listen sys_listen 89 #define getsockname sys_getsockname 90 #define accept sys_accept 91 #define recvfrom sys_recvfrom 92 #define sendto sys_sendto 86 93 87 94 int sys_socket(int af, int type, int protocol); … … 92 99 unsigned long sys_inet_addr (const char * cp); 93 100 int sys_gethostname (char * name, int namelen); 94 struct hostent * sys_gethostbyname(const char * name); 95 struct servent * sys_getservbyname(const char * name, const char * proto); 101 struct hostent * sys_gethostbyname (const char * name); 102 struct servent * sys_getservbyname (const char * name, const char * proto); 103 int sys_getpeername (int s, struct sockaddr *addr, int * namelen); 96 104 int sys_shutdown (int socket, int how); 105 int sys_setsockopt (int s, int level, int oname, const char * oval, int olen); 106 int sys_listen (int s, int backlog); 107 int sys_getsockname (int s, struct sockaddr * name, int * namelen); 108 int sys_accept (int s, struct sockaddr *addr, int *addrlen); 109 int sys_recvfrom (int s, char *buf, int len, int flags, 110 struct sockaddr *from, int * fromlen); 111 int sys_sendto (int s, const char * buf, int len, int flags, 112 const struct sockaddr *to, int tolen); 113 114 /* In addition to wrappers for the winsock functions, we also provide 115 an fcntl function, for setting sockets to non-blocking mode. */ 116 int fcntl (int s, int cmd, int options); 117 #define F_SETFL 4 118 #define O_NDELAY 04000 97 119 98 120 /* we are providing a real h_errno variable */ … … 142 164 143 165 /* end of socket.h */ 166 167 /* arch-tag: e3b8b91c-aaa0-4bc4-be57-a85a1dd247b4 168 (do not change this comment) */ branches/2.2/nt/inc/sys/time.h
r3104 r3679 6 6 */ 7 7 8 struct timeval 8 struct timeval 9 9 { 10 10 long tv_sec; /* seconds */ 11 11 long tv_usec; /* microseconds */ 12 12 }; 13 struct timezone 13 struct timezone 14 14 { 15 15 int tz_minuteswest; /* minutes west of Greenwich */ … … 22 22 23 23 /* end of sys/time.h */ 24 25 /* arch-tag: bc525883-0c81-4bea-b83d-3325461f38b5 26 (do not change this comment) */ branches/2.2/nt/inc/unistd.h
r3104 r3679 1 1 /* Fake unistd.h: config.h already provides most of the relevant things. */ 2 3 /* arch-tag: 68600bcd-3097-4501-a559-551db3cdb9fd 4 (do not change this comment) */
