RadClearAttributeList Function

Action

Clears the list of attributes that's sent to the RADIUS server during authentication.

Include file

radius.bdh

Syntax

RadClearAttributeList( );

Example

dcltrans
  transaction TRun
    begin
      RadSetAttributeNumber(RAD_NasPort, 1234);
      RadSetAttributeString(RAD_CallingStationId, "+1 1234 123 1234");
      RadAuthenticate(RAD_AUTH_MSCHAP2, "user", "pass");
      RadClearAttributeList();
    end TRun;