Changeset 1827 for trunk/src/emx/include/InnoTekLIBC/tcpip.h
- Timestamp:
- Mar 13, 2005, 11:46:03 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/InnoTekLIBC/tcpip.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r1826 r1827 228 228 229 229 /** 230 * Allocates file handle for a socket - extended version. BSD 4.4.230 * Allocates file handle for a socket - extended version. 231 231 * 232 232 * The socket is not removed from the socket list when calling this … … 234 234 * processor where such actions are unnecessary. 235 235 * 236 * @returns Pointer to socket handleon success.237 * @returns N ULL and errnoon failure.236 * @returns 0 on success. 237 * @returns Negative error code (errno.h) on failure. 238 238 * @param fh The requested file handle. 239 239 * If -1 any file handle can be used. … … 245 245 * If clear we only increment the global reference counter. 246 246 * @param pfh Where to store the filename. 247 */ 248 PLIBCSOCKETFH TCPNAMEG44(AllocFHEx)(int fh, int iSocket, unsigned fFlags, int fNew, int *pfh); 249 /** 250 * Allocates file handle for a socket - extended version. BSD 4.3. 247 * @param ppFHSocket Where to store the allocated socket handle. Optional. 248 */ 249 int TCPNAMEG44(AllocFHEx)(int fh, int iSocket, unsigned fFlags, int fNew, int *pfh, PLIBCSOCKETFH *ppFHSocket); 250 /** 251 * Allocates file handle for a socket - extended version. 251 252 * 252 253 * The socket is not removed from the socket list when calling this … … 254 255 * processor where such actions are unnecessary. 255 256 * 256 * @returns Pointer to socket handleon success.257 * @returns N ULL and errnoon failure.257 * @returns 0 on success. 258 * @returns Negative error code (errno.h) on failure. 258 259 * @param fh The requested file handle. 259 260 * If -1 any file handle can be used. … … 265 266 * If clear we only increment the global reference counter. 266 267 * @param pfh Where to store the filename. 267 */ 268 PLIBCSOCKETFH TCPNAMEG43(AllocFHEx)(int fh, int iSocket, unsigned fFlags, int fNew, int *pfh); 268 * @param ppFHSocket Where to store the allocated socket handle. Optional. 269 */ 270 int TCPNAMEG43(AllocFHEx)(int fh, int iSocket, unsigned fFlags, int fNew, int *pfh, PLIBCSOCKETFH *ppFHSocket); 269 271 270 272 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.