Python socket.fromshare() Examples
The following are 18
code examples of socket.fromshare().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
socket
, or try the search function
.
Example #1
Source File: test_socket.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 6 votes |
def testTypes(self): families = [socket.AF_INET, socket.AF_INET6] types = [socket.SOCK_STREAM, socket.SOCK_DGRAM] for f in families: for t in types: try: source = socket.socket(f, t) except OSError: continue # This combination is not supported try: data = source.share(os.getpid()) shared = socket.fromshare(data) try: self.compareSockets(source, shared) finally: shared.close() finally: source.close()
Example #2
Source File: test_socket.py From Fluid-Designer with GNU General Public License v3.0 | 6 votes |
def testTypes(self): families = [socket.AF_INET, socket.AF_INET6] types = [socket.SOCK_STREAM, socket.SOCK_DGRAM] for f in families: for t in types: try: source = socket.socket(f, t) except OSError: continue # This combination is not supported try: data = source.share(os.getpid()) shared = socket.fromshare(data) try: self.compareSockets(source, shared) finally: shared.close() finally: source.close()
Example #3
Source File: test_socket.py From ironpython3 with Apache License 2.0 | 6 votes |
def testTypes(self): families = [socket.AF_INET, socket.AF_INET6] types = [socket.SOCK_STREAM, socket.SOCK_DGRAM] for f in families: for t in types: try: source = socket.socket(f, t) except OSError: continue # This combination is not supported try: data = source.share(os.getpid()) shared = socket.fromshare(data) try: self.compareSockets(source, shared) finally: shared.close() finally: source.close()
Example #4
Source File: test_socket.py From ironpython3 with Apache License 2.0 | 5 votes |
def testShareLength(self): data = self.serv.share(os.getpid()) self.assertRaises(ValueError, socket.fromshare, data[:-1]) self.assertRaises(ValueError, socket.fromshare, data+b"foo")
Example #5
Source File: resource_sharer.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def detach(self): '''Get the socket. This should only be called once.''' with _resource_sharer.get_connection(self._id) as conn: share = conn.recv_bytes() return socket.fromshare(share)
Example #6
Source File: test_socket.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def testShareLocal(self): data = self.serv.share(os.getpid()) s = socket.fromshare(data) try: self.compareSockets(self.serv, s) finally: s.close()
Example #7
Source File: test_socket.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def testShareLength(self): data = self.serv.share(os.getpid()) self.assertRaises(ValueError, socket.fromshare, data[:-1]) self.assertRaises(ValueError, socket.fromshare, data+b"foo")
Example #8
Source File: test_socket.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def remoteProcessServer(cls, q): # Recreate socket from shared data sdata = q.get() message = q.get() s = socket.fromshare(sdata) s2, c = s.accept() # Send the message s2.sendall(message) s2.close() s.close()
Example #9
Source File: resource_sharer.py From ironpython3 with Apache License 2.0 | 5 votes |
def detach(self): '''Get the socket. This should only be called once.''' with _resource_sharer.get_connection(self._id) as conn: share = conn.recv_bytes() return socket.fromshare(share)
Example #10
Source File: test_socket.py From ironpython3 with Apache License 2.0 | 5 votes |
def testShareLocal(self): data = self.serv.share(os.getpid()) s = socket.fromshare(data) try: self.compareSockets(self.serv, s) finally: s.close()
Example #11
Source File: px.py From px with MIT License | 5 votes |
def start_worker(pipeout): parse_config() httpd = ThreadedTCPServer(( State.config.get("proxy", "listen").strip(), State.config.getint("proxy", "port")), Proxy, bind_and_activate=False) mainsock = socket.fromshare(pipeout.recv()) httpd.socket = mainsock print_banner() serve_forever(httpd)
Example #12
Source File: test_socket.py From ironpython3 with Apache License 2.0 | 5 votes |
def remoteProcessServer(cls, q): # Recreate socket from shared data sdata = q.get() message = q.get() s = socket.fromshare(sdata) s2, c = s.accept() # Send the message s2.sendall(message) s2.close() s.close()
Example #13
Source File: resource_sharer.py From Imogen with MIT License | 5 votes |
def detach(self): '''Get the socket. This should only be called once.''' with _resource_sharer.get_connection(self._id) as conn: share = conn.recv_bytes() return socket.fromshare(share)
Example #14
Source File: resource_sharer.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def detach(self): '''Get the socket. This should only be called once.''' with _resource_sharer.get_connection(self._id) as conn: share = conn.recv_bytes() return socket.fromshare(share)
Example #15
Source File: test_socket.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def testShareLocal(self): data = self.serv.share(os.getpid()) s = socket.fromshare(data) try: self.compareSockets(self.serv, s) finally: s.close()
Example #16
Source File: test_socket.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def testShareLength(self): data = self.serv.share(os.getpid()) self.assertRaises(ValueError, socket.fromshare, data[:-1]) self.assertRaises(ValueError, socket.fromshare, data+b"foo")
Example #17
Source File: test_socket.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def remoteProcessServer(cls, q): # Recreate socket from shared data sdata = q.get() message = q.get() s = socket.fromshare(sdata) s2, c = s.accept() # Send the message s2.sendall(message) s2.close() s.close()
Example #18
Source File: px.py From px with MIT License | 5 votes |
def run_pool(): try: httpd = ThreadedTCPServer((State.config.get("proxy", "listen").strip(), State.config.getint("proxy", "port")), Proxy) except OSError as exc: if "attempt was made" in str(exc): print("Px failed to start - port in use") else: pprint(exc) return mainsock = httpd.socket print_banner() if hasattr(socket, "fromshare"): workers = State.config.getint("settings", "workers") for i in range(workers-1): (pipeout, pipein) = multiprocessing.Pipe() p = multiprocessing.Process(target=start_worker, args=(pipeout,)) p.daemon = True p.start() while p.pid is None: time.sleep(1) pipein.send(mainsock.share(p.pid)) serve_forever(httpd) ### # Proxy detection