search for: listenfd

Displaying 5 results from an estimated 5 matches for "listenfd".

Did you mean: listened
2007 Jan 06
3
Re: [nut-commits] svn commit r708 - in trunk: . clients server
...original) > +++ trunk/server/upsd.c Fri Jan 5 21:06:59 2007 > @@ -26,6 +26,7 @@ > > #include <sys/un.h> > #include <sys/socket.h> > +#include <netdb.h> > > #ifdef HAVE_SSL > #include <openssl/err.h> > @@ -60,7 +61,11 @@ > static int listenfd, net_port = PORT; > > /* default is to listen on all local interfaces */ > -static struct in_addr listenaddr; > +static char *listenaddr = NULL; > + > +/* AF_ */ > + > +static int opt_af = AF_UNSPEC; > > /* signal handlers */ > static struct sigaction sa; &...
2007 Jan 23
2
Re: [nut-commits] svn commit r731
...; #include "neterr.h" > > +#define QUOTED(x) #x > + > /* externally-visible settings and pointers */ > > upstype *firstups = NULL; > @@ -56,20 +59,12 @@ > > /* everything else */ > > -static ctype *firstclient = NULL; > - > -static int listenfd, net_port = PORT; > +static ctype *firstclient = NULL; > > /* default is to listen on all local interfaces */ > -#ifndef HAVE_IPV6 > -static struct in_addr listenaddr; > -#else > -static char *listenaddr = "0.0.0.0"; > - > -/* AF_ */ > +static stype *firs...
2012 Jan 29
1
How To Start Troubleshooting
...IO_ADDRESS_LIST_CHANGE request: stub fixme:advapi:ReportEventA (0xcafe4242,0x0001,0x0000,0x00000064,(nil),0x0001,0x00000000,0x79e34c,(nil)): stub fixme:advapi:ReportEventW (0xcafe4242,0x0001,0x0000,0x00000064,(nil),0x0001,0x00000000,0x139068,(nil)): stub err:eventlog:ReportEventW L"ERROR: bind(listenfd, (struct sockaddr *) &laddr, sizeof(laddr)); failed: 317 ()" fixme:advapi:ReportEventA (0xcafe4242,0x0001,0x0000,0x00000064,(nil),0x0001,0x00000000,0x79e34c,(nil)): stub fixme:advapi:ReportEventW (0xcafe4242,0x0001,0x0000,0x00000064,(nil),0x0001,0x00000000,0x139068,(nil)): stub err:eventlo...
2007 Jan 06
1
Re: [nut-commits] svn commit r710 - in trunk: . clients server
...size_t rqpos; > char *loginups; > > Modified: trunk/server/upsd.c > ============================================================================== > --- trunk/server/upsd.c (original) > +++ trunk/server/upsd.c Sat Jan 6 19:39:08 2007 > @@ -61,11 +61,15 @@ > static int listenfd, net_port = PORT; > > /* default is to listen on all local interfaces */ > +#ifndef HAVE_IPV6 > +static struct in_addr listenaddr; > +#else > static char *listenaddr = NULL; > > /* AF_ */ > > static int opt_af = AF_UNSPEC; > +#endif > > /* signa...
2016 Feb 04
2
Unix socket support for sshd
On 04 Feb (10:46:55), Daniel Kahn Gillmor wrote: > On Thu 2016-02-04 07:40:39 -0500, David Goulet wrote: > > > I would like to know if adding support for Unix socket to sshd would be a > > feature that would be consider to be added upstream? (ListenAddress). > > fwiw, i think this is a good idea, but i wouldn't implement it as an > explicit ListenAddress option: