Searched defs:handshake (Results 1 - 7 of 7) sorted by relevance
/dovecot/src/master/ |
H A D | service-log.c | 19 struct log_service_handshake handshake; local 31 i_zero(&handshake); 32 handshake.log_magic = MASTER_LOG_MAGIC; 33 handshake.prefix_len = strlen(log_prefix); 36 buffer_append(handshake_buf, &handshake, sizeof(handshake)); 41 i_error("write(log handshake) failed: %m"); 45 i_error("write(log handshake) didn't write everything");
|
/dovecot/src/lib-ssl-iostream/ |
H A D | iostream-ssl-private.h | 25 int (*handshake)(struct ssl_iostream *ssl_io); member in struct:iostream_ssl_vfuncs
|
/dovecot/src/auth/ |
H A D | mech.h | 55 buffer_t *handshake; member in struct:mechanisms_register
|
/dovecot/src/imap-urlauth/ |
H A D | imap-urlauth-client.c | 129 static const char handshake[] = "VERSION\timap-urlauth-worker\t2\t0\n"; local 176 /* send protocol version handshake */ 177 if (o_stream_send_str(client->ctrl_output, handshake) < 0) { 178 i_error("Error sending handshake to imap-urlauth worker: %m"); 215 client_disconnect(client, "Worker handshake failed");
|
/dovecot/src/indexer/ |
H A D | master-connection.c | 294 const char *handshake; local 302 handshake = t_strdup_printf(INDEXER_WORKER_HANDSHAKE, 304 (void)write_full(conn->fd, handshake, strlen(handshake));
|
/dovecot/src/lib-auth/ |
H A D | auth-server-connection.c | 34 i_error("BUG: Authentication server already sent handshake"); 73 i_error("BUG: Authentication server already sent handshake"); 89 i_error("BUG: Authentication server already sent handshake"); 415 i_error("Timeout waiting for handshake from auth server. " 423 const char *handshake; local 452 handshake = t_strdup_printf("VERSION\t%u\t%u\nCPID\t%u\n", 456 if (o_stream_send_str(conn->output, handshake) < 0) { 457 i_warning("Error sending handshake to auth server: %s",
|
/dovecot/src/log/ |
H A D | log-connection.c | 285 struct log_service_handshake handshake; local 291 full handshake packet immediately. if not, treat it as an error 299 if ((size_t)ret < sizeof(handshake)) { 300 /* this isn't a handshake */ 305 i_assert(size >= sizeof(handshake)); 306 memcpy(&handshake, data, sizeof(handshake)); 308 if (handshake.log_magic != MASTER_LOG_MAGIC) { 309 /* this isn't a handshake */ 313 if (handshake [all...] |
Completed in 16 milliseconds