OpenVAS Libraries  9.0.3
radius.c File Reference

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. More...
 

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 265 of file radius.c.

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