search for: net_disconnect

Displaying 8 results from an estimated 8 matches for "net_disconnect".

2017 Sep 08
0
EOF from net_disconnect(fd)
...; > //string_t *testEOF= t_str_new(2); > > //str_append(testEOF, (char*) 4); > > //if ( net_transmit(fd, str_data(testEOF), str_len(testEOF) ) < 0 ) { > > // i_error("Error writing EOF"); > > // } > > > > //i_close_fd(&fd); > > net_disconnect(fd); > > fd=-1; > > > > > > > > Thank you, > > Steffan Cline > > 602-793-0014 > >
2017 Sep 08
1
EOF from net_disconnect(fd)
.../str_append(testEOF, (char*) 4); >> >> //if ( net_transmit(fd, str_data(testEOF), str_len(testEOF) ) < 0 ) { >> >> // i_error("Error writing EOF"); >> >> // } >> >> >> >> //i_close_fd(&fd); >> >> net_disconnect(fd); >> >> fd=-1; >> >> >> >> >> >> >> >> Thank you, >> >> Steffan Cline >> >> 602-793-0014 >> >> >
2017 Sep 08
0
EOF from net_disconnect(fd)
On 09/08/2017 02:29 AM, Steffan Cline wrote: > I???m working on an OS project from github. There are two parts: > > Dovecot plugin - https://github.com/st3fan/dovecot-xaps-plugin > > Daemon written in Go - https://github.com/st3fan/dovecot-xaps-daemon > what does this have to do with dovecot? > -- So many immigrant groups have swept through our town that Brooklyn, like
2017 Sep 08
5
EOF from net_disconnect(fd)
...f(stx) ) < 0 ) { ? i_error("Error writing EOF"); } //string_t *testEOF= t_str_new(2); //str_append(testEOF, (char*) 4); //if ( net_transmit(fd, str_data(testEOF), str_len(testEOF) ) < 0 ) { //????? i_error("Error writing EOF"); //??? } //i_close_fd(&fd); net_disconnect(fd); fd=-1; Thank you, Steffan Cline 602-793-0014
2007 Nov 14
1
libwrap-ing IMAP and POP logins
...e_port); if (fd < 0) { @@ -77,6 +88,17 @@ return; } +#ifdef LIBWRAP + strlcat(daemon, login_protocol, sizeof(daemon)); + request_init(&req, RQ_DAEMON, daemon, RQ_FILE, fd, NULL); + fromhost(&req); + if (!hosts_access(&req)) { + i_info("libwrap: access denied"); + net_disconnect(fd); + return; + } +#endif + if (net_getsockname(fd, &local_ip, &local_port) < 0) { memset(&local_ip, 0, sizeof(local_ip)); local_port = 0; @@ -99,6 +121,10 @@ struct client *client; struct ssl_proxy *proxy; int fd, fd_ssl; +#ifdef LIBWRAP + struct request_info req; +...
2010 Jun 08
1
ZFS Index corruption and Connection reset by peer
...ydataset 750M - zhome/username usedbychildren 0 - zhome/username usedbyrefreservation 0 - Other problem, that I have been unable to solve so far, is that a lot of entries show up in my logs about : dovecot: imap-login: net_disconnect() failed: Connection reset by peer It doesn't seem to have any adverse effect, except it's filling up the logs. It seem to appear when a client closes the imap connection? Is there a way to suppress this error? Regard P.C.
2003 Nov 04
0
PATCH: make local IP address available to auth modules
The attached patch makes the local IP address to which the client connected available to the authentication modules; i.e., the local IP address is available for substitution as %i for the mysql and pgsql modules. We needed this feature to support thousands of our legacy accounts which are authenticated by username/local_part (not the full email address) and IP address (one per domain). Timo,
2010 Aug 12
59
[PATCH 00/15] RFC xen device model support
Hi all, this is the long awaited patch series to add xen device model support in qemu; the main author is Anthony Perard. Developing this series we tried to come up with the cleanest possible solution from the qemu point of view, limiting the amount of changes to common code as much as possible. The end result still requires a couple of hooks in piix_pci but overall the impact should be very