Greenbone Vulnerability Management Libraries 22.32.0
radiusutils.c File Reference

Implementation of an API for Radius authentication. More...

#include "radiusutils.h"
Include dependency graph for radiusutils.c:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int radius_authenticate (const char *hostname, const char *secret, const char *username, const char *password)
 Dummy function for manager.

Detailed Description

Implementation of an API for Radius authentication.

Definition in file radiusutils.c.

Function Documentation

◆ radius_authenticate()

int radius_authenticate ( const char * hostname,
const char * secret,
const char * username,
const char * password )

Dummy function for manager.

Parameters
[in]hostnameServer hostname.
[in]secretRadius secret key.
[in]usernameUsername to authenticate.
[in]passwordPassword to use with username.
Returns
-1.

Definition at line 263 of file radiusutils.c.

265{
266 (void) hostname;
267 (void) secret;
268 (void) username;
269 (void) password;
270
271 return -1;
272}

Referenced by Ensure().

Here is the caller graph for this function: