| /mirbsd/src/lib/libssl/src/doc/ssl/ |
| D | SSL_shutdown.pod | 16 "close notify" shutdown alert to the peer. 20 SSL_shutdown() tries to send the "close notify" shutdown alert to the peer. 25 The shutdown procedure consists of 2 steps: the sending of the "close notify" 26 shutdown alert and the reception of the peer's "close notify" shutdown 28 to only send its shutdown alert and then close the underlying connection 32 complete shutdown procedure (bidirectional "close notify" alerts) must be 35 SSL_shutdown() supports both uni- and bidirectional shutdown by its 2 step 44 shutdown is enough (the underlying connection shall be closed anyway), this 46 bidirectional shutdown handshake, SSL_shutdown() must be called again. 48 shutdown alert. On success, the second call to SSL_shutdown() will return [all …]
|
| D | SSL_CTX_set_quiet_shutdown.pod | 5 …_get_quiet_shutdown, SSL_set_quiet_shutdown, SSL_get_quiet_shutdown - manipulate shutdown behaviour 19 SSL_CTX_set_quiet_shutdown() sets the "quiet shutdown" flag for B<ctx> to be 23 SSL_CTX_get_quiet_shutdown() returns the "quiet shutdown" setting of B<ctx>. 25 SSL_set_quiet_shutdown() sets the "quiet shutdown" flag for B<ssl> to be 31 SSL_get_quiet_shutdown() returns the "quiet shutdown" setting of B<ssl>. 37 for a clean shutdown. 39 When setting the "quiet shutdown" flag to 1, L<SSL_shutdown(3)|SSL_shutdown(3)> 44 The session is thus considered to be shutdown, but no "close notify" alert 47 The default is normal shutdown behaviour as described by the TLS standard.
|
| D | SSL_set_shutdown.pod | 5 SSL_set_shutdown, SSL_get_shutdown - manipulate shutdown state of an SSL connection 17 SSL_set_shutdown() sets the shutdown state of B<ssl> to B<mode>. 19 SSL_get_shutdown() returns the shutdown mode of B<ssl>. 23 The shutdown state of an ssl connection is a bitmask of: 29 No shutdown setting, yet. 33 A "close notify" shutdown alert was sent to the peer, the connection is being 38 A shutdown alert was received form the peer, either a normal "close notify" 45 The shutdown state of the connection is used to determine the state of
|
| D | SSL_read.pod | 87 shutdown due to a "close notify" alert sent by the peer (in which case 88 the SSL_RECEIVED_SHUTDOWN flag in the ssl shutdown state is set 91 the peer simply shut down the underlying transport and the shutdown is 96 SSLv2 (deprecated) does not support a shutdown alert protocol, so it can
|
| /mirbsd/src/etc/ |
| D | rc.shutdown | 2 # $MirOS: src/etc/rc.shutdown,v 1.2 2009/07/18 14:09:07 tg Exp $ 3 # $OpenBSD: rc.shutdown,v 1.5 1999/09/03 18:11:48 deraadt Exp $ 5 # If it exists, this script is run at system-shutdown by reboot(8),
|
| /mirbsd/src/sys/dev/raidframe/ |
| D | rf_threadstuff.h | 109 int shutdown; member 138 (_g_)->shutdown++; \ 161 while((_g_)->shutdown < (_g_)->running) { \ 173 while((_g_)->shutdown < (_g_)->running) { \
|
| D | rf_threadstuff.c | 129 g->created = g->running = g->shutdown = 0; in _rf_init_managed_threadgroup() 162 g->created = g->running = g->shutdown = 0; in _rf_init_threadgroup()
|
| /mirbsd/src/lib/libssl/src/crypto/bio/ |
| D | bss_fd.c | 112 if (a->shutdown) in fd_free() 175 b->shutdown=(int)num; in fd_ctrl() 189 ret=b->shutdown; in fd_ctrl() 192 b->shutdown=(int)num; in fd_ctrl()
|
| D | bss_mem.c | 119 bi->shutdown=1; in mem_new() 129 if (a->shutdown) in mem_free() 242 b->shutdown=(int)num; in mem_ctrl() 253 ret=(long)b->shutdown; in mem_ctrl() 256 b->shutdown=(int)num; in mem_ctrl()
|
| D | bss_sock.c | 122 if (a->shutdown) in sock_free() 186 b->shutdown=(int)num; in sock_ctrl() 200 ret=b->shutdown; in sock_ctrl() 203 b->shutdown=(int)num; in sock_ctrl()
|
| D | bss_acpt.c | 140 bi->shutdown=1; in acpt_new() 175 shutdown(c->accept_sock,2); in acpt_close_socket() 189 if (a->shutdown) in acpt_free() 393 b->shutdown=(int)num; in acpt_ctrl() 422 ret=b->shutdown; in acpt_ctrl() 425 b->shutdown=(int)num; in acpt_ctrl()
|
| D | bss_file.c | 146 if (a->shutdown) in file_free() 213 b->shutdown=(int)num&BIO_CLOSE; in file_ctrl() 250 b->shutdown=(int)num&BIO_CLOSE; in file_ctrl() 296 ret=(long)b->shutdown; in file_ctrl() 299 b->shutdown=(int)num; in file_ctrl()
|
| D | bss_conn.c | 378 shutdown(bio->num,2); in conn_close_socket() 391 if (a->shutdown) in conn_free() 558 ret=b->shutdown; in conn_ctrl() 561 b->shutdown=(int)num; in conn_ctrl()
|
| /mirbsd/src/sbin/shutdown/ |
| D | Makefile | 4 PROG= shutdown 5 MAN= shutdown.8
|
| /mirbsd/src/gnu/usr.bin/perl/t/lib/warnings/ |
| D | pp_sys | 64 shutdown() on closed socket %s [pp_shutdown] 66 shutdown STDIN, 0; 259 # shutdown not present 274 shutdown STDIN, 0; 285 shutdown STDIN, 0; 297 shutdown STDIN, 0; 308 shutdown STDIN, 0; 319 shutdown() on closed socket STDIN at - line 27. 334 shutdown() on closed socket STDIN at - line 38. 335 (Are you trying to call shutdown() on dirhandle STDIN?)
|
| /mirbsd/src/gnu/usr.bin/cvs/src/ |
| D | socket-client.c | 191 if (shutdown (n->socket, 0) < 0) in socket_buffer_shutdown() 210 if (shutdown (n->socket, 1) < 0) in socket_buffer_shutdown()
|
| /mirbsd/src/lib/libssl/src/ |
| D | e_os.h | 381 # define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); } 382 # define SHUTDOWN2(fd) { shutdown((fd),2); closesocket(fd); } 458 # define SHUTDOWN(fd) { shutdown((fd),0); closesocket((fd)); } 459 # define SHUTDOWN2(fd) { shutdown((fd),2); closesocket((fd)); }
|
| /mirbsd/src/lib/libssl/src/ssl/ |
| D | bio_ssl.c | 128 if (a->shutdown) in ssl_free() 352 b->shutdown=(int)num; in ssl_ctrl() 375 ret=b->shutdown; in ssl_ctrl() 378 b->shutdown=(int)num; in ssl_ctrl()
|
| D | ssl_lib.c | 155 s->shutdown=0; in SSL_clear() 841 if (s->shutdown & SSL_RECEIVED_SHUTDOWN) in SSL_read() 857 if (s->shutdown & SSL_RECEIVED_SHUTDOWN) in SSL_peek() 872 if (s->shutdown & SSL_SENT_SHUTDOWN) in SSL_write() 1832 if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) && in SSL_get_error() 1864 s->shutdown=0; in SSL_set_accept_state() 1874 s->shutdown=0; in SSL_set_connect_state() 1997 ret->shutdown=s->shutdown; in SSL_dup() 2166 s->shutdown=mode; in SSL_set_shutdown() 2171 return(s->shutdown); in SSL_get_shutdown()
|
| D | s3_lib.c | 1646 s->shutdown=(SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN); in ssl3_shutdown() 1650 if (!(s->shutdown & SSL_SENT_SHUTDOWN)) in ssl3_shutdown() 1652 s->shutdown|=SSL_SENT_SHUTDOWN; in ssl3_shutdown() 1666 else if (!(s->shutdown & SSL_RECEIVED_SHUTDOWN)) in ssl3_shutdown() 1672 if ((s->shutdown == (SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN)) && in ssl3_shutdown() 1684 if (s->shutdown & SSL_SEND_SHUTDOWN) in ssl3_write()
|
| /mirbsd/src/sys/arch/i386/stand/libsa/ |
| D | pxe.c | 579 t_PXENV_UNDI_SHUTDOWN *shutdown = (void *) pxe_command_buf; in pxe_shutdown() local 597 if (shutdown->Status == PXENV_STATUS_SUCCESS) in pxe_shutdown() 601 shutdown->Status); in pxe_shutdown()
|
| /mirbsd/src/distrib/dbins/ |
| D | Makefile.sub | 96 SUBDIR+= sbin/shutdown 118 SKIPDIR+= sbin/shutdown # perms
|
| /mirbsd/src/usr.bin/ftp/ |
| D | main.c | 372 (void)shutdown(fileno(cout), 1+1); in lostpeer() 377 (void)shutdown(data, 1+1); in lostpeer() 386 (void)shutdown(fileno(cout), 1+1); in lostpeer()
|
| /mirbsd/src/lib/libpthread/uthread/ |
| D | uthread_shutdown.c | 43 shutdown(int fd, int how) in shutdown() function
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Socket/t/ |
| D | socketpair.t | 114 ok (shutdown(LEFT, SHUT_WR), "shutdown left for writing"); 209 ok (shutdown(LEFT, 1), "shutdown left for writing");
|