Changeset 2085 for Whitix/branches/netchannel/user/posix/socket/socket.c
- Timestamp:
- 05/20/10 16:05:25 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/netchannel/user/posix/socket/socket.c
r2084 r2085 11 11 #include "../file/internal.h" 12 12 13 static int PosixSocketClose(struct PosixFile* file) 14 { 15 Socket* socket = (Socket*)PosixFilePriv(file); 16 17 return SocketClose(socket); 18 } 19 13 20 /* POSIX file operations */ 14 21 struct PosixFileType socketType = 15 22 { 23 .close = PosixSocketClose, 16 24 }; 17 25
