summaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_socket.c
diff options
context:
space:
mode:
authorSøren Schmidt <sos@FreeBSD.org>1998-12-30 21:20:00 +0000
committerSøren Schmidt <sos@FreeBSD.org>1998-12-30 21:20:00 +0000
commite76bba09e352a742a3ce5cd5bcb9a249e42aba7b (patch)
treef5c167e15ff4e79f0136c371d818ce0396013b6f /sys/compat/linux/linux_socket.c
parent397e4760301a5affeeb1caf2dab6c4d60ed275d6 (diff)
Notes
Diffstat (limited to 'sys/compat/linux/linux_socket.c')
-rw-r--r--sys/compat/linux/linux_socket.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_socket.c b/sys/compat/linux/linux_socket.c
index b50cf5860e31..e9f4c4344311 100644
--- a/sys/compat/linux/linux_socket.c
+++ b/sys/compat/linux/linux_socket.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: linux_socket.c,v 1.12 1998/02/07 02:13:27 msmith Exp $
+ * $Id: linux_socket.c,v 1.13 1998/03/28 10:33:04 bde Exp $
*/
/* XXX we use functions that might not exist. */
@@ -810,6 +810,11 @@ linux_socketcall(struct proc *p, struct linux_socketcall_args *args)
return linux_setsockopt(p, args->args);
case LINUX_GETSOCKOPT:
return linux_getsockopt(p, args->args);
+ case LINUX_SENDMSG:
+ return sendmsg(p, args->args);
+ case LINUX_RECVMSG:
+ return recvmsg(p, args->args);
+
default:
uprintf("LINUX: 'socket' typ=%d not implemented\n", args->what);
return ENOSYS;