new upstream 2.8.0
This commit is contained in:
parent
fc7f4b43c1
commit
b2b0c9995a
836 changed files with 137090 additions and 30018 deletions
|
@ -4,6 +4,8 @@
|
|||
2002 Russell Kroll <rkroll@exploits.org>
|
||||
2008 Arjen de Korte <adkorte-guest@alioth.debian.org>
|
||||
2011 Arnaud Quette <arnaud.quette@free.fr>
|
||||
2013 Emilien Kia <kiae.dev@gmail.com>
|
||||
2020 Jim Klimov <jimklimov@gmail.com>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
@ -37,6 +39,12 @@
|
|||
|
||||
#include "parseconf.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
/* *INDENT-OFF* */
|
||||
extern "C" {
|
||||
/* *INDENT-ON* */
|
||||
#endif
|
||||
|
||||
/* client structure */
|
||||
typedef struct nut_ctype_s {
|
||||
char *addr;
|
||||
|
@ -45,6 +53,9 @@ typedef struct nut_ctype_s {
|
|||
char *loginups;
|
||||
char *password;
|
||||
char *username;
|
||||
/* per client status info for commands and settings
|
||||
* (disabled by default) */
|
||||
int tracking;
|
||||
|
||||
#ifdef WITH_OPENSSL
|
||||
SSL *ssl;
|
||||
|
@ -62,4 +73,10 @@ typedef struct nut_ctype_s {
|
|||
struct nut_ctype_s *next;
|
||||
} nut_ctype_t;
|
||||
|
||||
#ifdef __cplusplus
|
||||
/* *INDENT-OFF* */
|
||||
}
|
||||
/* *INDENT-ON* */
|
||||
#endif
|
||||
|
||||
#endif /* NUT_CTYPE_H_SEEN */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue