Fix setIpDst in ConnectivityIntent
Change-Id: I7228e79dd45cd3c2ae72a9491633a9774afda218
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -317,7 +317,7 @@ public abstract class ConnectivityIntentCommand extends AbstractShellCommand { | ... | @@ -317,7 +317,7 @@ public abstract class ConnectivityIntentCommand extends AbstractShellCommand { |
| 317 | } | 317 | } |
| 318 | 318 | ||
| 319 | if (!isNullOrEmpty(setIpDstString)) { | 319 | if (!isNullOrEmpty(setIpDstString)) { |
| 320 | - treatmentBuilder.setIpSrc(IpAddress.valueOf(setIpDstString)); | 320 | + treatmentBuilder.setIpDst(IpAddress.valueOf(setIpDstString)); |
| 321 | emptyTreatment = false; | 321 | emptyTreatment = false; |
| 322 | } | 322 | } |
| 323 | if (!isNullOrEmpty(setVlan)) { | 323 | if (!isNullOrEmpty(setVlan)) { | ... | ... |
-
Please register or login to post a comment