Skip to content

Instantly share code, notes, and snippets.

View b0bje's full-sized avatar

stevenK b0bje

  • Belgium
View GitHub Profile
@majek
majek / proxy.py
Created January 23, 2012 10:55
Python asyncore based tcp proxy
import asyncore
import errno
import os
import socket
import logging
import threading
log = logging.getLogger('tcp_proxy')
_map = {}