Minor changes to the get authentication token API.

This commit is contained in:
Juan Carlos Luciani 2006-05-16 15:20:47 +00:00
parent e621b59930
commit 837603b69f

View File

@ -53,15 +53,21 @@ extern "C"
//++======================================================================= //++=======================================================================
extern CasaStatus SSCS_CALL extern CasaStatus SSCS_CALL
ObtainAuthToken( ObtainAuthToken(
IN const char *pServiceAtHostName, IN const char *pServiceName,
IN const char *pHostName,
INOUT char *pAuthTokenBuf, INOUT char *pAuthTokenBuf,
INOUT int *pAuthTokenBufLen); INOUT int *pAuthTokenBufLen);
// //
// Arguments: // Arguments:
// pServiceAtHostName - // pServiceName -
// Pointer to NULL terminated string that contains the // Pointer to NULL terminated string that contains the
// service@host name to which the client is trying to // name of the service to which the client is trying to
// authenticate. Note that the host portion of the name // authenticate.
//
// pHostName -
// Pointer to NULL terminated string that contains the
// name of the host where resides the service to which the
// client is trying to authenticate. Note that the name
// can either be a DNS name or a dotted IP address. // can either be a DNS name or a dotted IP address.
// //
// pAuthTokenBuf - // pAuthTokenBuf -