|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 21.4 GB of 70.42 GB (30.4%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
lib/
python2.7/
dist-packages/
twisted/
internet/
- drwxr-xr-x
|
Viewing file: _win32stdio.py (3.04 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
# -*- test-case-name: twisted.test.test_stdio -*-
""" Windows-specific implementation of the L{twisted.internet.stdio} interface. """
import win32api import os, msvcrt
from zope.interface import implements
from twisted.internet.interfaces import IHalfCloseableProtocol, ITransport, IAddress from twisted.internet.interfaces import IConsumer, IPushProducer
from twisted.internet import _pollingfile, main from twisted.python.failure import Failure
class Win32PipeAddress(object): implements(IAddress)
class StandardIO(_pollingfile._PollingTimer):
implements(ITransport, IConsumer, IPushProducer)
disconnecting = False disconnected = False
def __init__(self, proto): """ Start talking to standard IO with the given protocol.
Also, put it stdin/stdout/stderr into binary mode. """ from twisted.internet import reactor
for stdfd in range(0, 1, 2): msvcrt.setmode(stdfd, os.O_BINARY)
_pollingfile._PollingTimer.__init__(self, reactor) self.proto = proto
hstdin = win32api.GetStdHandle(win32api.STD_INPUT_HANDLE) hstdout = win32api.GetStdHandle(win32api.STD_OUTPUT_HANDLE)
self.stdin = _pollingfile._PollableReadPipe( hstdin, self.dataReceived, self.readConnectionLost)
self.stdout = _pollingfile._PollableWritePipe( hstdout, self.writeConnectionLost)
self._addPollableResource(self.stdin) self._addPollableResource(self.stdout)
self.proto.makeConnection(self)
def dataReceived(self, data): self.proto.dataReceived(data)
def readConnectionLost(self): if IHalfCloseableProtocol.providedBy(self.proto): self.proto.readConnectionLost() self.checkConnLost()
def writeConnectionLost(self): if IHalfCloseableProtocol.providedBy(self.proto): self.proto.writeConnectionLost() self.checkConnLost()
connsLost = 0
def checkConnLost(self): self.connsLost += 1 if self.connsLost >= 2: self.disconnecting = True self.disconnected = True self.proto.connectionLost(Failure(main.CONNECTION_DONE))
# ITransport
def write(self, data): self.stdout.write(data)
def writeSequence(self, seq): self.stdout.write(''.join(seq))
def loseConnection(self): self.disconnecting = True self.stdin.close() self.stdout.close()
def getPeer(self): return Win32PipeAddress()
def getHost(self): return Win32PipeAddress()
# IConsumer
def registerProducer(self, producer, streaming): return self.stdout.registerProducer(producer, streaming)
def unregisterProducer(self): return self.stdout.unregisterProducer()
# def write() above
# IProducer
def stopProducing(self): self.stdin.stopProducing()
# IPushProducer
def pauseProducing(self): self.stdin.pauseProducing()
def resumeProducing(self): self.stdin.resumeProducing()
|