Conditions | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1.2963 |
Changes | 0 |
1 | """Query the switch for configured queues on a port.""" |
||
24 | 1 | def __init__(self, xid=None, port=None): |
|
25 | """Create a QueueGetConfigRequest with the optional parameters below. |
||
26 | |||
27 | Args: |
||
28 | xid (int): xid of OpenFlow header |
||
29 | port (~pyof.v0x01.common.phy_port.Port): Target port for the query |
||
30 | """ |
||
31 | super().__init__(xid) |
||
32 | self.port = port |
||
33 |