Greenbone Vulnerability Management Libraries  11.0.1
radiusutils.h File Reference

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

Go to the source code of this file.

Functions

int radius_authenticate (const char *, const char *, const char *, const char *)
 Dummy function for manager. More...
 

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

271 {
272  (void) hostname;
273  (void) secret;
274  (void) username;
275  (void) password;
276 
277  return -1;
278 }