search for: netssl

Displaying 12 results from an estimated 12 matches for "netssl".

2011 Jan 07
2
[nut-commits] svn commit r2804 - in branches/ssl-nss-port: clients server
...7:55 2011 (r2804) > @@ -178,6 +178,22 @@ > return 1; > } > > + /* CERTREQUEST ("NO" | "REQUEST" | "REQUIRE") */ > + if (!strcmp(arg[0], "CERTREQUEST")) { > + if (strcasecmp(arg[1], "REQUEST") == 0) { > + certrequest = NETSSL_CERTREQ_REQUEST; > + } else if (strcasecmp(arg[1], "REQUIRE") == 0) { > + certrequest = NETSSL_CERTREQ_REQUIRE; > + } else if (strcasecmp(arg[1], "NO") == 0) { > + certrequest = NETSSL_CERTREQ_NO; > + } else { > + upslogx(LOG_WARNING, "CERTREQUEST...
2023 Nov 09
2
2.8.1 build buglet: sockdebug.c
...ng whether to enable libwrap (tcp-wrappers) support... yes There is a program sockdebug.c in server: Making all in server `libparseconf.la' is up to date. CC sockdebug.o `libcommon.la' is up to date. CC upsd.o CC user.o CC conf.o CC netssl.o CC sstate.o CC desc.o CC netget.o CC netmisc.o CC netlist.o CC netuser.o CC netset.o CC netinstcmd.o CCLD sockdebug ld: /usr/lib/libwrap.so: undefined reference to `deny_severity' ld: /usr/lib/libwrap....
2018 Jun 19
2
upsmon Can not initialize SSL context (letsencrypt) #563
those mails list are from last century but i give it a try ! created : https://github.com/networkupstools/nut/issues/563 Hello all, Trying to run an EATON 850pro via USB on a Debian Stretch Stable. I have letsencrypt certificate installed and working. When trying to manage the EATON device, i got: upsmon Can not initialize SSL context When 850pro is connected via USB, i can: lsusb Bus 009
2018 Jun 25
0
upsmon Can not initialize SSL context (letsencrypt) #563
On Tue, 19 Jun 2018, tech wrote: > Jun 19 16:34:55 REDACTED upsmon[7389]: Can not initialize SSL context > I am lost. Comments and Help welcome. It's only a comment, but, this message comes from NUT program netssl.c status = NSS_NoDB_Init(NULL); if (status != SECSuccess) { upslogx(LOG_ERR, "Can not initialize SSL context"); nss_error("upscli_init / NSS_[NoDB]_Init"); return; } which does not call PR_GetError to retrieve the error code when NSS_NoDB_Init fails. To find...
2018 Jul 12
0
2.7.4 uses deprecated back level of TLS
...t.c: In function 'upscli_init': upsclient.c:322:2: warning: 'TLSv1_client_method' is deprecated [-Wdeprecated-declarations] ssl_method = TLSv1_client_method(); ^~~~~~~~~~ A similar warning about TLSv1_server_method appears at netssl.c:392. I understand from https://users-cs.au.dk/sortie/sortix/release/nightly/man/man3/TLSv1_server_method.3.html that version flexible TLS_server_method() is now preferred. See Issue 575 for more detail. https://github.com/networkupstools/nut/issues/575 Roger
2012 Aug 10
1
NSS branch testing.
Hello all, In order to prepare the merge of the NSS branch to the trunk, I have validated the code in this branch by passing this validation document written by Emilien Kia : http://www.networkupstools.org/tmp/NUT-NSS_Mini_DVT_Plan-final.pdf The testing has been done on rev 3685 of the ssl-nss-port branch. As you can read, I have found no issue. Let me know if you have any comments on this.
2018 Jul 10
0
NSS on Debian Stretch with libnss3: Can not initialize SSL context
...heartbeat Jul 10 15:02:51 gold upsd[15961]: Connected to UPS [Eaton]: usbhid-ups-Eaton Jul 10 15:02:51 gold upsd[15961]: listening on 0.0.0.0 port 3493 Jul 10 15:02:51 gold upsd[15962]: Startup successful Jul 10 15:02:51 gold upsd[15962]: Can not initialize SSL context The error message comes from netssl.c if (certfile) status = NSS_Init(certfile); else status = NSS_NoDB_Init(NULL); if (status != SECSuccess) { upslogx(LOG_ERR, "Can not initialize SSL context"); nss_error("upscli_init / NSS_[NoDB]_Init"); return; } Since certfile is defined, it looks as i...
2023 Nov 09
1
2.8.1 build buglet: sockdebug.c
...s > > > There is a program sockdebug.c in server: > > Making all in server > `libparseconf.la' is up to date. > CC sockdebug.o > `libcommon.la' is up to date. > CC upsd.o > CC user.o > CC conf.o > CC netssl.o > CC sstate.o > CC desc.o > CC netget.o > CC netmisc.o > CC netlist.o > CC netuser.o > CC netset.o > CC netinstcmd.o > CCLD sockdebug > ld: /usr/lib/libwrap.so: undefined refere...
2018 Jun 27
2
upsmon Can not initialize SSL context (letsencrypt) #563
...t : Re: [Nut-upsuser] upsmon Can not initialize SSL context (letsencrypt) #563 On Tue, 19 Jun 2018, tech wrote: > Jun 19 16:34:55 REDACTED upsmon[7389]: Can not initialize SSL context > I am lost. Comments and Help welcome. It's only a comment, but, this message comes from NUT program netssl.c status = NSS_NoDB_Init(NULL); if (status != SECSuccess) { upslogx(LOG_ERR, "Can not initialize SSL context"); nss_error("upscli_init / NSS_[NoDB]_Init"); return; } which does not call PR_Ge...
2023 Oct 31
5
NUT v2.8.1 is released
...it was almost midnight, Cinderella became a pumpkin, and NUT was released!.. Trick or treat?! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://alioth-lists.debian.net/pipermail/nut-upsdev/attachments/20231031/f3590340/attachment.htm>
2023 Oct 31
5
NUT v2.8.1 is released
...it was almost midnight, Cinderella became a pumpkin, and NUT was released!.. Trick or treat?! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://alioth-lists.debian.net/pipermail/nut-upsdev/attachments/20231031/f3590340/attachment.htm>
2023 Nov 09
1
2.8.1 build buglet: sockdebug.c
...s > > > There is a program sockdebug.c in server: > > Making all in server > `libparseconf.la' is up to date. > CC sockdebug.o > `libcommon.la' is up to date. > CC upsd.o > CC user.o > CC conf.o > CC netssl.o > CC sstate.o > CC desc.o > CC netget.o > CC netmisc.o > CC netlist.o > CC netuser.o > CC netset.o > CC netinstcmd.o > CCLD sockdebug > ld: /usr/lib/libwrap.so: undefined refere...