Return the address object that has the control interface
(self)
| 103 | return False |
| 104 | |
| 105 | def get_control_if(self): |
| 106 | """ |
| 107 | Return the address object that has the control interface |
| 108 | """ |
| 109 | for interface in self.get_interfaces(): |
| 110 | if interface.is_control(): |
| 111 | return interface |
| 112 | return None |
| 113 | |
| 114 | def process(self): |
| 115 | for dev in self.dbag: |
no test coverage detected