Skip to content
Snippets Groups Projects
Commit f75ec907 authored by Diogo's avatar Diogo
Browse files

deleted unused parameters

parent d8fb8e15
No related branches found
No related tags found
No related merge requests found
......@@ -523,11 +523,11 @@ ILoadBalancerService, IOFMessageListener {
// out: match dest client (ip, port), rewrite src from member ip/port to vip ip/port, forward
if (! routeIn.getPath().isEmpty()) {
pushStaticVipRoute(true, routeIn, client, member, sw, pi, cntx);
pushStaticVipRoute(true, routeIn, client, member, sw);
}
if (! routeOut.getPath().isEmpty()) {
pushStaticVipRoute(false, routeOut, client, member, sw, pi, cntx);
pushStaticVipRoute(false, routeOut, client, member, sw);
}
}
......@@ -550,7 +550,7 @@ ILoadBalancerService, IOFMessageListener {
* @param LBMember member
* @param long pinSwitch
*/
public void pushStaticVipRoute(boolean inBound, Path route, IPClient client, LBMember member, IOFSwitch pinSwitch,OFPacketIn pi, FloodlightContext cntx) {
public void pushStaticVipRoute(boolean inBound, Path route, IPClient client, LBMember member, IOFSwitch pinSwitch) {
List<NodePortTuple> path = route.getPath();
if (path.size() > 0) {
......
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