Bases: threading.Thread
A Queue for packets received
Attributes
| daemon | A boolean value indicating whether this thread is a daemon thread (True) or not (False). |
| ident | Thread identifier of this thread or None if it has not been started. |
| name | A string used for identification purposes only. |
Methods
| get_packet() | Get the next packet from the queue |
| run() | |
| stop() | Stop the thread |
Detailed Methods