Return control interface
( self )
| 949 | return '0' * ( self.dpidLen - len( dpid ) ) + dpid |
| 950 | |
| 951 | def defaultIntf( self ): |
| 952 | "Return control interface" |
| 953 | if self.controlIntf: |
| 954 | return self.controlIntf |
| 955 | else: |
| 956 | return Node.defaultIntf( self ) |
| 957 | |
| 958 | def sendCmd( self, *cmd, **kwargs ): |
| 959 | """Send command to Node. |
nothing calls this directly
no test coverage detected