asyncore.dispatcher_with_send

class asyncore.dispatcher_with_send A dispatcher subclass which adds simple buffered output capability, useful

2016-10-07 17:27:11
ssl.get_server_certificate()

ssl.get_server_certificate(addr, ssl_version=PROTOCOL_SSLv23, ca_certs=None) Given the address addr of an SSL-protected

2016-10-07 17:42:44
asyncore.dispatcher.create_socket()

create_socket(family=socket.AF_INET, type=socket.SOCK_STREAM) This is identical to the creation of a normal socket, and will

2016-10-07 17:27:09
ssl.SSLSocket.write()

SSLSocket.write(buf) Write buf to the SSL socket and return the number of bytes written. The buf argument

2016-10-07 17:42:59
socket.getservbyport()

socket.getservbyport(port[, protocolname]) Translate an Internet port number and protocol name to a service name for that service

2016-10-07 17:42:14
socket.socket.ioctl()

socket.ioctl(control, option)

2016-10-07 17:42:21
asynchat.async_chat.set_terminator()

async_chat.set_terminator(term) Sets the terminating condition to be recognized on the channel. term may be any

2016-10-07 17:26:23
socket.socket()

socket.socket(family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None) Create a new socket using the given address family, socket

2016-10-07 17:42:18
signal.siginterrupt()

signal.siginterrupt(signalnum, flag) Change system call restart behaviour: if flag is

2016-10-07 17:42:00
socket.socket.recvfrom()

socket.recvfrom(bufsize[, flags]) Receive data from the socket. The return value is a pair (bytes, address) where

2016-10-07 17:42:22