Skip to content
Snippets Groups Projects
Commit e1b16a75 authored by Saurav Das's avatar Saurav Das
Browse files

Cosmetic changes - trying to get near 80 chars

parent 224aecab
No related branches found
No related tags found
No related merge requests found
/**
* Copyright 2011, Big Switch Networks, Inc.
* Copyright 2011, Big Switch Networks, Inc.
* Originally created by David Erickson, Stanford University
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
......@@ -29,18 +29,23 @@ public interface IRoutingDecision {
/*
* NONE: NO-OP, continue with the packet processing chain
* DROP: Drop this packet and this flow
* FORWARD: Forward this packet, and this flow, to the first (and only device) in getDestinationDevices(),
* if the destination is not known at this time, initiate a discovery action for it (e.g. ARP)
* FORWARD_OR_FLOOD: Forward this packet, and this flow, to the first (and only device) in getDestinationDevices(),
* if the destination is not known at this time, flood this packet on the source switch
* MULTICAST: Multicast this packet to all the interfaces and devices attached
* FORWARD: Forward this packet, and this flow, to the first
* (and only device) in getDestinationDevices(),
* if the destination is not known at this time,
* initiate a discovery action for it (e.g. ARP)
* FORWARD_OR_FLOOD: Forward this packet, and this flow, to the first
* (and only device) in getDestinationDevices(),
* if the destination is not known at this time,
* flood this packet on the source switch
* MULTICAST: Multicast this packet to all the interfaces
* and devices attached
*/
NONE, DROP, FORWARD, FORWARD_OR_FLOOD, MULTICAST
}
public static final FloodlightContextStore<IRoutingDecision> rtStore =
new FloodlightContextStore<IRoutingDecision>();
public static final String CONTEXT_DECISION =
public static final String CONTEXT_DECISION =
"net.floodlightcontroller.routing.decision";
public void addToContext(FloodlightContext cntx);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment