/*
- * $Id: dns_internal.cc,v 1.46 2002/04/13 23:07:50 hno Exp $
+ * $Id: dns_internal.cc,v 1.47 2002/06/25 11:43:34 hno Exp $
*
* DEBUG: section 78 DNS lookups; interacts with lib/rfc1035.c
* AUTHOR: Duane Wessels
break;
case _WIN_OS_WIN2K:
case _WIN_OS_WINXP:
+ case _WIN_OS_WINNET:
/* get nameservers from the Windows 2000 registry */
/* search all interfaces for DNS server addresses */
if (RegOpenKey(HKEY_LOCAL_MACHINE,
/*
- * $Id: enums.h,v 1.209 2002/06/24 06:07:38 hno Exp $
+ * $Id: enums.h,v 1.210 2002/06/25 11:43:34 hno Exp $
*
*
* SQUID Web Proxy Cache http://www.squid-cache.org/
_WIN_OS_WINME,
_WIN_OS_WINNT,
_WIN_OS_WIN2K,
- _WIN_OS_WINXP
+ _WIN_OS_WINXP,
+ _WIN_OS_WINNET
};
#endif
/*
- * $Id: win32.cc,v 1.4 2001/11/17 11:09:25 hno Exp $
+ * $Id: win32.cc,v 1.5 2002/06/25 11:43:34 hno Exp $
*
* * * * * * * * Legal stuff * * * * * * *
*
WIN32_OS_string = xstrdup("Windows XP");
return _WIN_OS_WINXP;
}
+ if ((osvi.dwMajorVersion == 5) && (osvi.dwMinorVersion == 2)) {
+ WIN32_OS_string = xstrdup("Windows .NET");
+ return _WIN_OS_WINNET;
+ }
break;
case VER_PLATFORM_WIN32_WINDOWS:
if ((osvi.dwMajorVersion == 4) && (osvi.dwMinorVersion == 0)) {