|
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 | : | 24.22 GB of 70.42 GB (34.39%) |
|
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/
share/
pyshared/
twisted/
internet/
- drwxr-xr-x
|
Viewing file: serialport.py (1.85 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details.
""" Serial Port Protocol """
# http://twistedmatrix.com/trac/ticket/3725#comment:24 # Apparently applications use these names even though they should # be imported from pyserial __all__ = ["serial", "PARITY_ODD", "PARITY_EVEN", "PARITY_NONE", "STOPBITS_TWO", "STOPBITS_ONE", "FIVEBITS", "EIGHTBITS", "SEVENBITS", "SIXBITS", # Name this module is actually trying to export "SerialPort"]
# system imports import os, sys
# all of them require pyserial at the moment, so check that first import serial from serial import PARITY_NONE, PARITY_EVEN, PARITY_ODD from serial import STOPBITS_ONE, STOPBITS_TWO from serial import FIVEBITS, SIXBITS, SEVENBITS, EIGHTBITS
# common code for serial ports class BaseSerialPort: def setBaudRate(self, baudrate): if hasattr(self._serial, "setBaudrate"): self._serial.setBaudrate(baudrate) else: self._serial.setBaudRate(baudrate)
def inWaiting(self): return self._serial.inWaiting()
def flushInput(self): self._serial.flushInput()
def flushOutput(self): self._serial.flushOutput()
def sendBreak(self): self._serial.sendBreak()
def getDSR(self): return self._serial.getDSR()
def getCD(self): return self._serial.getCD()
def getRI(self): return self._serial.getRI()
def getCTS(self): return self._serial.getCTS()
def setDTR(self, on = 1): self._serial.setDTR(on)
def setRTS(self, on = 1): self._serial.setRTS(on)
class SerialPort(BaseSerialPort): pass
# replace SerialPort with appropriate serial port if os.name == 'posix': from twisted.internet._posixserialport import SerialPort elif sys.platform == 'win32': from twisted.internet._win32serialport import SerialPort
|