From: Jeffrey Altman Date: Mon, 16 Mar 2009 18:13:32 +0000 (+0000) Subject: DEVEL15-windows-afsconfig-20090316 X-Git-Tag: openafs-devel-1_5_58~72 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=bf50ac6dca30ce40ca2688a22676f0eddf772518;p=packages%2Fo%2Fopenafs.git DEVEL15-windows-afsconfig-20090316 LICENSE MIT add typedef for socklen_t which is not present on Windows. (cherry picked from commit 143819664227f239c9cc07503c9fad1faa5ba9a3) --- 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;