Greenbone Vulnerability Management Libraries 22.8.0
radiusutils.h File Reference

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

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 *, const char *, const char *, const char *)
 Dummy function for manager.
 

Detailed Description

Headers of an API for Radius authentication.

Definition in file radiusutils.h.

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 262 of file radiusutils.c.

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