mistakes in README

This commit is contained in:
speyrefitte
2014-07-15 17:16:46 +02:00
parent bacfdff6f4
commit e3a6ecaf1e

View File

@@ -20,9 +20,7 @@ $ git clone https://github.com/citronneur/rdpy.git rdpy
$ scons -C rdpy/lib install $ scons -C rdpy/lib install
``` ```
## Binaries ## Examples
Binaries are uses as examples to use rdpy lib.
To create an RDP client (this example doesn't need build step of project because it doesn't call bitmap uncompress): To create an RDP client (this example doesn't need build step of project because it doesn't call bitmap uncompress):
``` ```
from rdpy.protocol.rdp import rdp from rdpy.protocol.rdp import rdp
@@ -35,7 +33,7 @@ class MyRDPFactory(rdp.ClientFactory):
#here code handle bitmap #here code handle bitmap
pass pass
def onReady(self): def onReady(self):
#send r key #send 'r' key
self._controller.sendKeyEventUnicode(ord(unicode("r".toUtf8(), encoding="UTF-8")), True) self._controller.sendKeyEventUnicode(ord(unicode("r".toUtf8(), encoding="UTF-8")), True)
#mouse move and click at pixel 200x200 #mouse move and click at pixel 200x200
self._controller.sendPointerEvent(200, 200, 1, true) self._controller.sendPointerEvent(200, 200, 1, true)
@@ -53,7 +51,9 @@ from twisted.internet import reactor
reactor.connectTCP("XXX.XXX.XXX.XXX", 3389), MyRDPFactory()) reactor.connectTCP("XXX.XXX.XXX.XXX", 3389), MyRDPFactory())
reactor.run() reactor.run()
``` ```
For more details on client rdp see rdpy/bin/rdpy-rdpclient binaries.
## Binaries
RDP Client RDP Client
``` ```
$ rdpy/bin/rdpy-rdpclient XXX.XXX.XXX.XXX 3389 $ rdpy/bin/rdpy-rdpclient XXX.XXX.XXX.XXX 3389