Method: Trema::Controller#send_flow_mod_delete
- Defined in:
- ruby/trema/controller.c
- (Object) send_flow_mod_delete(datapath_id, options = {})
390 391 392 393 394 395 396 397 398 |
# File 'ruby/trema/controller.c', line 390
static VALUE
controller_send_flow_mod_delete( int argc, VALUE *argv, VALUE self ) {
uint16_t command = OFPFC_DELETE;
if ( get_strict( argc, argv ) == Qtrue ) {
command = OFPFC_DELETE_STRICT;
}
return controller_send_flow_mod( command, argc, argv, self );
}
|