reorder package

This commit is contained in:
speyrefitte
2014-01-24 11:21:58 +01:00
parent 9a70aa77ff
commit 56b398af56
17 changed files with 30 additions and 30 deletions

View File

@@ -6,7 +6,7 @@ import struct
from copy import deepcopy from copy import deepcopy
from StringIO import StringIO from StringIO import StringIO
from error import InvalidValue from error import InvalidValue
from rdpy.protocol.network.error import InvalidExpectedDataException from rdpy.network.error import InvalidExpectedDataException
def sizeof(element): def sizeof(element):
''' '''

View File

@@ -1,9 +1,9 @@
''' '''
@author: sylvain @author: sylvain
''' '''
from rdpy.protocol.network.type import UInt8, UInt16Be, UInt32Be, String from rdpy.network.type import UInt8, UInt16Be, UInt32Be, String
from rdpy.utils.const import ConstAttributes, TypeAttributes from rdpy.network.const import ConstAttributes, TypeAttributes
from rdpy.protocol.network.error import InvalidExpectedDataException, InvalidSize from rdpy.network.error import InvalidExpectedDataException, InvalidSize
@ConstAttributes @ConstAttributes
@TypeAttributes(UInt8) @TypeAttributes(UInt8)

View File

@@ -3,10 +3,10 @@
@summary gcc language @summary gcc language
@see: http://msdn.microsoft.com/en-us/library/cc240510.aspx @see: http://msdn.microsoft.com/en-us/library/cc240510.aspx
''' '''
from rdpy.utils.const import ConstAttributes, TypeAttributes from rdpy.network.const import ConstAttributes, TypeAttributes
from rdpy.protocol.network.type import UInt8, UInt16Le, UInt32Le, CompositeType, String, UniString, Stream, sizeof from rdpy.network.type import UInt8, UInt16Le, UInt32Le, CompositeType, String, UniString, Stream, sizeof
import per import per
from rdpy.protocol.network.error import InvalidExpectedDataException from rdpy.network.error import InvalidExpectedDataException
t124_02_98_oid = ( 0, 0, 20, 124, 0, 1 ) t124_02_98_oid = ( 0, 0, 20, 124, 0, 1 )
h221_cs_key = "Duca"; h221_cs_key = "Duca";

View File

@@ -1,8 +1,8 @@
''' '''
@author: sylvain @author: sylvain
''' '''
from rdpy.protocol.network.type import CompositeType, UInt8, UInt16Le, UInt32Le, String, sizeof from rdpy.network.type import CompositeType, UInt8, UInt16Le, UInt32Le, String, sizeof
from rdpy.utils.const import ConstAttributes, TypeAttributes from rdpy.network.const import ConstAttributes, TypeAttributes
@ConstAttributes @ConstAttributes
@TypeAttributes(UInt8) @TypeAttributes(UInt8)

View File

@@ -2,11 +2,11 @@
@author: sylvain @author: sylvain
''' '''
from rdpy.utils.const import ConstAttributes, TypeAttributes from rdpy.network.const import ConstAttributes, TypeAttributes
from rdpy.protocol.network.layer import LayerAutomata from rdpy.network.layer import LayerAutomata
from rdpy.protocol.network.type import sizeof, Stream, UInt8, UInt16Be from rdpy.network.type import sizeof, Stream, UInt8, UInt16Be
from rdpy.network.error import InvalidExpectedDataException, InvalidValue, InvalidSize
from rdpy.protocol.rdp.ber import writeLength from rdpy.protocol.rdp.ber import writeLength
from rdpy.protocol.network.error import InvalidExpectedDataException, InvalidValue, InvalidSize
import ber, gcc, per import ber, gcc, per

View File

@@ -2,8 +2,8 @@
@author: sylvain @author: sylvain
''' '''
from rdpy.protocol.network.type import UInt8, UInt16Be, UInt32Be, String from rdpy.network.type import UInt8, UInt16Be, UInt32Be, String
from rdpy.protocol.network.error import InvalidValue, InvalidExpectedDataException from rdpy.network.error import InvalidValue, InvalidExpectedDataException
def readLength(s): def readLength(s):
''' '''

View File

@@ -2,10 +2,10 @@
@author: sylvain @author: sylvain
''' '''
from rdpy.protocol.network.layer import LayerAutomata from rdpy.network.layer import LayerAutomata
from rdpy.protocol.network.type import CompositeType, UniString, String, UInt8, UInt16Le, UInt16Be, UInt32Le, sizeof, ArrayType from rdpy.network.type import CompositeType, UniString, String, UInt8, UInt16Le, UInt16Be, UInt32Le, sizeof, ArrayType
from rdpy.utils.const import ConstAttributes, TypeAttributes from rdpy.network.const import ConstAttributes, TypeAttributes
from rdpy.protocol.network.error import InvalidExpectedDataException from rdpy.network.error import InvalidExpectedDataException
import gcc import gcc
import lic import lic

View File

@@ -1,10 +1,10 @@
''' '''
@author: sylvain @author: sylvain
''' '''
from rdpy.protocol.network.layer import LayerAutomata from rdpy.network.layer import LayerAutomata
from rdpy.protocol.network.type import UInt8, UInt16Le, UInt16Be, UInt32Le, CompositeType, sizeof from rdpy.network.type import UInt8, UInt16Le, UInt16Be, UInt32Le, CompositeType, sizeof
from rdpy.protocol.network.error import InvalidExpectedDataException from rdpy.network.error import InvalidExpectedDataException
from rdpy.utils.const import ConstAttributes, TypeAttributes from rdpy.network.const import ConstAttributes, TypeAttributes
@ConstAttributes @ConstAttributes
@TypeAttributes(UInt8) @TypeAttributes(UInt8)

View File

@@ -1,8 +1,8 @@
''' '''
@author: sylvain @author: sylvain
''' '''
from rdpy.protocol.network.layer import RawLayer from rdpy.network.layer import RawLayer
from rdpy.protocol.network.type import UInt8, UInt16Be, sizeof from rdpy.network.type import UInt8, UInt16Be, sizeof
class TPKT(RawLayer): class TPKT(RawLayer):
''' '''

View File

@@ -2,8 +2,8 @@
@author: sylvain @author: sylvain
''' '''
from rdpy.protocol.network.type import UInt8, UInt16Be, UInt32Be, SInt32Be, String, CompositeType from rdpy.network.type import UInt8, UInt16Be, UInt32Be, SInt32Be, String, CompositeType
from rdpy.utils.const import ConstAttributes, TypeAttributes from rdpy.network.const import ConstAttributes, TypeAttributes
@ConstAttributes @ConstAttributes
@TypeAttributes(String) @TypeAttributes(String)

View File

@@ -2,8 +2,8 @@
@author: sylvain @author: sylvain
''' '''
from twisted.internet import protocol from twisted.internet import protocol
from rdpy.protocol.network.type import String, UInt8, UInt16Be, UInt32Be from rdpy.network.type import String, UInt8, UInt16Be, UInt32Be
from rdpy.protocol.network.layer import RawLayer from rdpy.network.layer import RawLayer
from message import * from message import *
class ProtocolMode(object): class ProtocolMode(object):

View File

@@ -11,5 +11,5 @@ if __name__ == '__main__':
from twisted.internet import reactor from twisted.internet import reactor
#reactor.connectTCP("127.0.0.1", 5901, factory.RfbFactory(protocol)) #reactor.connectTCP("127.0.0.1", 5901, factory.RfbFactory(protocol))
#reactor.connectTCP("192.168.1.90", 3389, factory.RfbFactory(tpkt.TPKT(tpdu.TPDU(mcs.MCS())))) #reactor.connectTCP("192.168.1.90", 3389, factory.RfbFactory(tpkt.TPKT(tpdu.TPDU(mcs.MCS()))))
reactor.connectTCP("192.168.135.182", 3389, rdp.Factory()) reactor.connectTCP("192.168.135.198", 3389, rdp.Factory())
reactor.run() reactor.run()

View File