31 lines
712 B
C
31 lines
712 B
C
/* $NetBSD: uipc_syscalls_30.c,v 1.3 2007/12/20 23:02:45 dsl Exp $ */
|
|
|
|
/* written by Pavel Cahyna, 2006. Public domain. */
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls_30.c,v 1.3 2007/12/20 23:02:45 dsl Exp $");
|
|
|
|
/*
|
|
* System call interface to the socket abstraction.
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/msg.h>
|
|
#include <sys/sysctl.h>
|
|
#include <sys/mount.h>
|
|
#include <sys/syscallargs.h>
|
|
#include <sys/errno.h>
|
|
|
|
int
|
|
compat_30_sys_socket(struct lwp *l, const struct compat_30_sys_socket_args *uap, register_t *retval)
|
|
{
|
|
int error;
|
|
|
|
error = sys___socket30(l, (const void *)uap, retval);
|
|
if (error == EAFNOSUPPORT)
|
|
error = EPROTONOSUPPORT;
|
|
|
|
return (error);
|
|
}
|