Source code for irc.connection
from __future__ import absolute_import
import socket
__metaclass__ = type
[docs]def identity(x):
return x
[docs]class Factory:
"""
A class for creating custom socket connections.
To create a simple connection:
server_address = ('localhost', 80)
Factory()(server_address)
To create an SSL connection:
Factory(wrapper=ssl.wrap_socket)(server_address)
To create an SSL connection with parameters to wrap_socket:
wrapper = functools.partial(ssl.wrap_socket, ssl_cert=get_cert())
Factory(wrapper=wrapper)(server_address)
To create an IPv6 connection:
Factory(ipv6=True)(server_address)
Note that Factory doesn't save the state of the socket itself. The
caller must do that, as necessary. As a result, the Factory may be
re-used to create new connections with the same settings.
"""
family = socket.AF_INET
def __init__(self, bind_address=None, wrapper=identity, ipv6=False):
self.bind_address = bind_address
self.wrapper = wrapper
if ipv6:
self.family = socket.AF_INET6
[docs] def connect(self, server_address):
sock = self.wrapper(socket.socket(self.family, socket.SOCK_STREAM))
self.bind_address and sock.bind(self.bind_address)
sock.connect(server_address)
return sock
__call__ = connect