Skip to content
Snippets Groups Projects
Commit d0aec691 authored by abat's avatar abat
Browse files

Merge into master from pull request #212:

Change methods in DeviceManagerImpl from private to protected. (https://github.com/floodlight/floodlight/pull/212)
parents c813d418 83655244
No related branches found
No related tags found
No related merge requests found
......@@ -791,7 +791,7 @@ IFlowReconcileListener, IInfoProvider, IHAListener {
* @param pi the original packetin
* @return the entity from the packet
*/
private Entity getSourceEntityFromPacket(Ethernet eth,
protected Entity getSourceEntityFromPacket(Ethernet eth,
long swdpid,
int port) {
byte[] dlAddrArr = eth.getSourceMACAddress();
......@@ -816,7 +816,7 @@ IFlowReconcileListener, IInfoProvider, IHAListener {
* @param eth
* @return
*/
private Entity getDestEntityFromPacket(Ethernet eth) {
protected Entity getDestEntityFromPacket(Ethernet eth) {
byte[] dlAddrArr = eth.getDestinationMACAddress();
long dlAddr = Ethernet.toLong(dlAddrArr);
short vlan = eth.getVlanID();
......
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