ClearBox Server™ v1.2 Developer's Guide

ICSVAccounting::LogRADPacketCSV

The main method of the interface. When server extension calls this method and passes it an array of RADIUS attributes found in the RADIUS Accounting-Request packet (although this type of packets is not restricted), then server logs these attributes to the accounting logfile, every set of attributes on a new line, separating their values by a delimiter set in SetCSVOptions.

This method differs from LogRADPacketCSVEx in the way that is uses log files automatically managed by the server, while LogRADPacketCSVEx expects file handle as a parameter, and server extension is responsible for creating and managing this file.

Server extension should define logfile parameters before calling this method. It is done by making call to ILivingstonAccounting::SetLoggingOptionsEx or ILivingstonAccounting::SetLoggingOptions, inherited by ICSVAccounting interface.

Besides this, SetLoggedAttributes or SetLoggedAttributesNames should be called to specify what attributes should be logged.

HRESULT LogRADPacketCSV(
	[in] unsigned long attributesNum,
	[in] RADIUS_ATTRIBUTE* inpAttributes,
	[in] USERINFOLITE* userInf);

Parameters

attributesNum
[in] Number of elements in the array pointed by inpAttributes. Should not be 0.
inpAttributes
[in] Array of RADIUS attributes elements that server should log. Generally, these attributes are those passed to server extension's IRADIUSAccounting::ProcessAccounting implementation as inpAttributes parameter. Should not be NULL.
userInf
[in] A structure describing user associated with the accounting data passed as inpAttributes parameter. Server extension may pass NULL pointer or a pointer passed to server extension's IRADIUSAccounting::ProcessAccounting implementation as userInf parameter. This parameter is needed as long as it contains values for some of pseudo-attributes listed in SetLoggedAttributesNames article except for '@time' attribute. If server extension needs not to log these pseudo-attributes, it may pass NULL as an argument.

Return Values

This method may return E_INVALIDARG if attributesNum=0, inpAttributes=NULL, SetLoggingOptions or SetLoggingOptionsEx, SetLoggedAttributes or SetLoggedAttributesNames were not called before.

Thread Safety

This method can be called from any thread.

Memory Management

Server extension should allocate and free memory for inpAttributes and userInf parameters. If server extension uses inpAttributes and userInf parameters passed to IRADIUSAccounting::ProcessAccounting implementation, then this memory is managed by the server.

Remarks

Server extension may pass any RADIUS attributes to this method, but only attributes that were specified explicitly in call to SetLoggedAttributes or SetLoggedAttributesNames are logged. If an attribute was listed in array passed to SetLoggedAttributes(Names) but it's not present in the inpAttributes array, empty value is logged.

Example Code

This code uses m_pAcc as ICSVAccounting interface pointer stored in ICommonExtenderEx::InitializeEx implementation. It makes server log accounting data into the file.

//Implementation of IRADIUSAccounting::ProcessAccounting
STDMETHODIMP CTest::ProcessAccounting(
long tag, USERINFOLITE * userInf, unsigned long attributesNum,
RADIUS_ATTRIBUTE * inpAttributes, USERADDRESS * userAddr, ACCOUNTINGSTATUS * status)
{
	*status=A_OK;
	return m_pAcc->LogRADPacketCSV(attributesNum,inpAttribures,userInf);
}

See Also

ICSVAccounting, Server services, CSV Accounting Logging, SetLoggedAttributesNames, LogRADPacketCSVEx


© 2001-2003 XPerience Technologies. www.xperiencetech.com

Created by chm2web html help conversion utility.