netgenie-srv: Updated README.
This commit is contained in:
parent
5ae7bc1a7d
commit
bb0ba68bbc
@ -158,17 +158,10 @@ def parseArgs():
|
|||||||
def main():
|
def main():
|
||||||
"""
|
"""
|
||||||
The NGServer class implements our NetGenie debug/bridge server.
|
The NGServer class implements our NetGenie debug/bridge server.
|
||||||
|
|
||||||
ng = NGServer(bridge_ip=args.bridge_ip,
|
|
||||||
bridge_port=args.bridge_port,
|
|
||||||
ioip=args.ioip,
|
|
||||||
incoming_port=args.incoming_port,
|
|
||||||
outgoing_port=args.outgoing_port)
|
|
||||||
|
|
||||||
# asyncio.run(start_thread(ng))
|
|
||||||
"""
|
"""
|
||||||
|
# Get the arguments
|
||||||
args = parseArgs()
|
args = parseArgs()
|
||||||
|
# Start the server.
|
||||||
startServerAndWait(args)
|
startServerAndWait(args)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
@ -39,6 +39,15 @@ options:
|
|||||||
The port that the person debugging will write packets to the device.
|
The port that the person debugging will write packets to the device.
|
||||||
```
|
```
|
||||||
|
|
||||||
|
You can also start NetGenieSrv from a python REPL as follows:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
In [1]: import NetGenieSrv as ngs
|
||||||
|
In [2]: ng = ngs.NGServer(bridge_ip='0.0.0.0')
|
||||||
|
In [3]: ngs.startThread(ng)
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
## Using the server
|
## Using the server
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
Loading…
x
Reference in New Issue
Block a user