Prev Next
The LLC_DLC_REALLOCATE_PARMS structure is the DLC parameter table for
the LLC_DLC_REALLOCATE_STATION command. You pass a pointer to this structure
using the pParameterTable member of the CCB_PARMS
union.
typedef struct {
USHORT usStationId;
UCHAR uchOption;
UCHAR uchStationCount;
UCHAR uchStationsAvailOnAdapter;
UCHAR uchStationsAvailOnSap;
UCHAR uchTotalStationsOnAdapter;
UCHAR uchTotalStationsOnSap;
} LLC_DLC_REALLOCATE_PARMS, *PLLC_DLC_REALLOCATE_PARMS;
Members
-
usStationId
-
Identifier of the affected SAP.
-
uchOption
-
The increase or decrease indicator. Specify one of the following values.
Value
|
Meaning
|
LLC_INCREASE_LINK_STATIONS
|
Increase the number of link stations.
|
LLC_DECREASE_LINK_STATIONS
|
Decrease the number of link stations.
|
-
uchStationCount
-
Number of link stations to be reallocated as indicated by the uchOption
member. If this number is greater than the number of available stations, the
command fails and LLC_STATUS_INADEQUATE_LINKS is the return code. If this
value is zero, the command is executed and returns the values in the parameter
table.
-
uchStationsAvailOnAdapter
-
Number of link stations available for this adapter.
-
uchStationsAvailOnSap
-
Number of link stations available for this SAP.
-
uchTotalStationsOnAdapter
-
Number of link stations configured for this adapter.
-
uchTotalStationsOnSap
-
Number of link stations reserved for this SAP.
See Also
AcsLan, CCB_PARMS