From: Jeffrey Altman Date: Mon, 16 Mar 2009 18:13:21 +0000 (+0000) Subject: windows-afsconfig-20090316 X-Git-Tag: openafs-devel-1_5_61~453 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=143819664227f239c9cc07503c9fad1faa5ba9a3;p=packages%2Fo%2Fopenafs.git windows-afsconfig-20090316 LICENSE MIT add typedef for socklen_t which is not present on Windows. --- diff --git a/src/config/afsconfig-windows.h b/src/config/afsconfig-windows.h index 410458966..2176c8120 100644 --- a/src/config/afsconfig-windows.h +++ b/src/config/afsconfig-windows.h @@ -231,3 +231,6 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } /* include all of the vos listvol options */ #define FULL_LISTVOL_SWITCH 1 + +/* Windows does not provide socklen_t */ +typedef unsigned int socklen_t;