svn commit: r341496 - head/sys/sys
Brooks Davis
brooks at FreeBSD.org
Tue Dec 4 21:57:27 UTC 2018
Author: brooks
Date: Tue Dec 4 21:57:26 2018
New Revision: 341496
URL: https://svnweb.freebsd.org/changeset/base/341496
Log:
Regen after r341495: Remove NOARGS from oaccept.
Modified:
head/sys/sys/sysproto.h
Modified: head/sys/sys/sysproto.h
==============================================================================
--- head/sys/sys/sysproto.h Tue Dec 4 21:56:45 2018 (r341495)
+++ head/sys/sys/sysproto.h Tue Dec 4 21:57:26 2018 (r341496)
@@ -2205,6 +2205,11 @@ struct osethostname_args {
char hostname_l_[PADL_(char *)]; char * hostname; char hostname_r_[PADR_(char *)];
char len_l_[PADL_(u_int)]; u_int len; char len_r_[PADR_(u_int)];
};
+struct oaccept_args {
+ char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
+ char name_l_[PADL_(struct sockaddr *)]; struct sockaddr * name; char name_r_[PADR_(struct sockaddr *)];
+ char anamelen_l_[PADL_(int *)]; int * anamelen; char anamelen_r_[PADR_(int *)];
+};
struct osend_args {
char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
char buf_l_[PADL_(const void *)]; const void * buf; char buf_r_[PADR_(const void *)];
More information about the svn-src-all
mailing list