Greenbone Vulnerability Management Libraries 22.8.0
radiusutils.c File Reference

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

#include "radiusutils.h"
Include dependency graph for radiusutils.c:

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

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