|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| lmserver.h
| Unicode
| No
| Platform Notes
| None
|
|
|
SERVER_INFO_502
The SERVER_INFO_502 structure contains information about the specified server, including name,
platform, type of server, and associated software.
typedef struct _SERVER_INFO_502 {
DWORD sv502_sessopens;
DWORD sv502_sessvcs;
DWORD sv502_opensearch;
DWORD sv502_sizreqbuf;
DWORD sv502_initworkitems;
DWORD sv502_maxworkitems;
DWORD sv502_rawworkitems;
DWORD sv502_irpstacksize;
DWORD sv502_maxrawbuflen;
DWORD sv502_sessusers;
DWORD sv502_sessconns;
DWORD sv502_maxpagedmemoryusage;
DWORD sv502_maxnonpagedmemoryusage;
BOOL sv502_enableforcedlogoff;
BOOL sv502_timesource;
BOOL sv502_acceptdownlevelapis;
BOOL sv502_lmannounce;
} SERVER_INFO_502, *PSERVER_INFO_502, *LPSERVER_INFO_502;
Members
sv502_sessopens
Specifies the number of files that can be open in one session.
sv502_sessvcs
Specifies the maximum number of virtual circuits per client.
sv502_opensearch
Specifies the number of search operations that can be carried out
simultaneously.
sv502_sizreqbuf
Specifies the size, in bytes, of each server buffer.
sv502_initworkitems
Specifies the initial number of receive buffers, or work items, used by the
server. Allocating work items costs a certain amount of memory initially, but not
as much as having to allocate additional buffers later.
sv502_maxworkitems
Specifies the maximum number of receive buffers, or work items, the server can
allocate. If this limit is reached, the transport must initiate flow control
at a significant performance cost.
sv502_rawworkitems
Specifies the number of special work items for raw I/O that the server uses. A
larger value for this member can increase performance but costs more memory.
sv502_irpstacksize
Specifies the number of stack locations in IRPs allocated by the server.
sv502_maxrawbuflen
Specifies the maximum raw mode buffer size.
sv502_sessusers
Specifies the maximum number of users that can be logged on to a server using
a single virtual circuit.
sv502_sessconns
Specifies the maximum number of tree connections that can be made on the
server using a single virtual circuit.
sv502_maxpagedmemoryusage
Specifies the maximum size of pageable memory that the server can have
allocated at any time. Adjust this member if you want to administer memory quota
control.
sv502_maxnonpagedmemoryusage
Specifies the maximum size of nonpaged memory that the server can have
allocated at any time. Adjust this member if you want to administer memory quota
control.
sv502_enableforcedlogoff
Specifies whether the server should force a client to disconnect, even if the
client has open files, once the client's logon time has expired.
sv502_timesource
Specifies whether the server is a reliable time source.
sv502_acceptdownlevelapis
Specifies whether the server will accept function calls from previous
generation LAN Manager clients.
sv502_lmannounce
Specifies the LAN Manager server announcement interval.
See Also
NetServerGetInfo, NetServerSetInfo
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|