Skip to content
Snippets Groups Projects
Commit a76e1ab6 authored by Sandeep Hebbani's avatar Sandeep Hebbani
Browse files

suppress lldp related interface extension [#28380845]

parent 50d9dcb9
No related branches found
No related tags found
No related merge requests found
......@@ -63,4 +63,24 @@ public interface ILinkDiscoveryService extends IFloodlightService {
* @param listener The listener that wants the notifications
*/
public void addListener(ILinkDiscoveryListener listener);
/**
* Retrieves a set of all switch ports on which lldps are suppressed.
* @return
*/
public Set<SwitchPortTuple> getSuppressLLDPsInfo();
/**
* Adds a switch port to suppress lldp set
* @param sw
* @param port
*/
public void AddToSuppressLLDPs(IOFSwitch sw, short port);
/**
* Removes a switch port from suppress lldp set
* @param sw
* @param port
*/
public void RemoveFromSuppressLLDPs(IOFSwitch sw, short port);
}
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