0

I would like to find a way to set the miss_send_len on floodlight to 0xFFFD

i.e. translate the following POX line

self.connection.send(of.ofp_set_config(miss_send_len = 0xFFFD)) into floodlight.

Wheatley
  • 153
  • 1
  • 12

2 Answers2

0

As far as I know, this is done during the handshake between the controller and the switches through an OFSetConfig.

Manuel
  • 38
  • 3
0

A Modification to https://github.com/floodlight/floodlight/blob/master/src/main/java/net/floodlightcontroller/core/internal/OFSwitchHandshakeHandler.java#L1746 was enough to set the miss_send_len to 0xFFFD

Wheatley
  • 153
  • 1
  • 12