?? accept.c
字號:
//==========================================================================
//
// lib/accept.c
//
// accept() system call
//
//==========================================================================
//####BSDCOPYRIGHTBEGIN####
//
// -------------------------------------------
//
// Portions of this software may have been derived from OpenBSD or other sources,
// and are covered by the appropriate copyright disclaimers included herein.
//
// -------------------------------------------
//
//####BSDCOPYRIGHTEND####
//==========================================================================
//#####DESCRIPTIONBEGIN####
//
// Author(s): gthomas
// Contributors: gthomas
// Date: 2000-01-10
// Purpose:
// Description:
//
//
//####DESCRIPTIONEND####
//
//==========================================================================
#include <sys/param.h>
#include <cyg/io/file.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/syscallargs.h>
int
accept(int s, const struct sockaddr *name, socklen_t *anamelen)
{
struct sys_accept_args args;
int res, error;
SYSCALLARG(args,s) = s;
SYSCALLARG(args,name) = (struct sockaddr *)name;
SYSCALLARG(args,anamelen) = anamelen;
error = sys_accept(&args, &res);
if (error) {
errno = error;
return -1;
} else {
return res;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -