RtfwSetNALConfiguration

RtfwSetNALConfiguration sets the configuration of the Network Abstraction Layer (NAL).

Syntax

bool RtfwSetNALConfiguration(
    RTFW_NAL_CONFIGURATION * pConfiguration,
);

Parameters

pConfiguration

A pointer to a RTFW_NAL_CONFIGURATION structure that specifies the configuration of the NAL. The member Size must be set to sizeof(RTFW_NAL_CONFIGURATION), otherwise this API fails and sets the last error value to RT_ERROR_STRUCTURE_TOO_SMALL.

Return Value

The function returns true if it succeeds. Otherwise, it returns false. Call GetLastError for additional error information.

Possible error codes:

Error Code Meaning
RT_ERROR_NALDISPATCHIDEALPROCESSOR_INVALID The value specified for parameter IoctlDispatchIdealProcessor in structure RTFW_NAL_CONFIGURATION is invalid.
RT_ERROR_NETWORKIDEALPROCESSOR_INVALID The value specified for parameter IdealProcessor in structure RTFW_NAL_CONFIGURATION is invalid.
RT_ERROR_RESTART_NETWORK

The NAL was running when this function succeeded. RtfwRestartRequired will report that the NAL must be restarted.

NOTE: The NAL must be restarted for the changes to take effect.

RT_ERROR_STRUCTURE_TOO_SMALL The Size member of a structure is too small.

Remarks

The following is the best practice for using Native Library Get/Set APIs that take structures as arguments:

  1. Call the Get function.
  2. Modify the value(s) you want to change.
  3. Call the corresponding Set function.
  4. Check error returns to see if a component needs to be restarted.

The values passed in by the Set function will be saved (persistent).

If the NAL is running when RtfwSetNALConfiguration is called, the values specified within the structure will not take affect until the NAL is restarted

Requirements

Minimum Required Version RTX64 4.0
Header RtfwAPI.h
Library RtfwAPI.lib

See Also:

RtfwGetNALConfiguration

RtfwGetNALStatus

RTFW_NAL_CONFIGURATION