Module Name:    src
Committed By:   rjs
Date:           Tue Jul 31 13:20:34 UTC 2018

Modified Files:
        src/sys/sys: socket.h

Log Message:
Add declaration of getsockopt2().


To generate a diff of this commit:
cvs rdiff -u -r1.125 -r1.126 src/sys/sys/socket.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/socket.h
diff -u src/sys/sys/socket.h:1.125 src/sys/sys/socket.h:1.126
--- src/sys/sys/socket.h:1.125	Tue Jul 17 05:52:07 2018
+++ src/sys/sys/socket.h	Tue Jul 31 13:20:34 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: socket.h,v 1.125 2018/07/17 05:52:07 msaitoh Exp $	*/
+/*	$NetBSD: socket.h,v 1.126 2018/07/31 13:20:34 rjs Exp $	*/
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -655,6 +655,7 @@ int	connect(int, const struct sockaddr *
 int	getpeername(int, struct sockaddr * __restrict, socklen_t * __restrict);
 int	getsockname(int, struct sockaddr * __restrict, socklen_t * __restrict);
 int	getsockopt(int, int, int, void *__restrict, socklen_t * __restrict);
+int	getsockopt2(int, int, int, void *__restrict, socklen_t * __restrict);
 int	listen(int, int);
 int	paccept(int, struct sockaddr * __restrict, socklen_t * __restrict,
 	const sigset_t * __restrict, int);

Reply via email to