umGetNextAccessLimitGoAhead WebServer APIGoAhead EMF

Synopsis

Returns the next URL found in the access limit table after the given URL.

Prototype

 #include "um.h"

 char_t *umGetNextAccessLimit(char_t * lastAccessLimit);

Parameters

lastAccessLimitURL returned from the previous call to this function

Description

The returned string is a pointer to the data stored in the access limit table.

Return Value

umGetNextAccessLimit returns a pointer to the URL, or a NULL on error.

Example

char_t	*url = umGetFirstAccessLimit();
while (url) {
	url = umGetNextAccessLimit(url);
}

See Also

umGetFirstAccessLimit()