Skip to content
Snippets Groups Projects
Commit 3fbea3d6 authored by kwanggithub's avatar kwanggithub
Browse files

fix tabs in build.xml; update loadbalancer to use cookie in getRoute()

parent 04b40e2c
No related branches found
No related tags found
No related merge requests found
......@@ -67,10 +67,10 @@
<include name="jython-2.5.2.jar"/>
<include name="libthrift-0.7.0.jar"/>
<include name="guava-13.0.1.jar" />
<include name="commons-logging-1.1.1.jar" />
<include name="httpclient-4.2.2.jar" />
<include name="httpcore-4.2.2.jar" />
<include name="json-simple-1.1.1.jar" />
<include name="commons-logging-1.1.1.jar" />
<include name="httpclient-4.2.2.jar" />
<include name="httpcore-4.2.2.jar" />
<include name="json-simple-1.1.1.jar" />
</patternset>
<path id="classpath">
......
......@@ -444,12 +444,12 @@ public class LoadBalancer implements IFloodlightModule,
routingEngine.getRoute(srcDap.getSwitchDPID(),
(short)srcDap.getPort(),
dstDap.getSwitchDPID(),
(short)dstDap.getPort());
(short)dstDap.getPort(), 0);
Route routeOut =
routingEngine.getRoute(dstDap.getSwitchDPID(),
(short)dstDap.getPort(),
srcDap.getSwitchDPID(),
(short)srcDap.getPort());
(short)srcDap.getPort(), 0);
// use static flow entry pusher to push flow mod along in and out path
// in: match src client (ip, port), rewrite dest from vip ip/port to member ip/port, forward
......
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