[NETFILTER]: nf_conntrack_h323: add missing T.120 address in OLCA

Add missing process of T.120 address in OpenLogicalChannelAck signal.

Signed-off-by: Jing Min Zhao <zhaojingmin@vivecode.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Jing Min Zhao and committed by David S. Miller f8f1c08e 596830f1

+10
+10
net/netfilter/nf_conntrack_h323_main.c
··· 520 520 } 521 521 } 522 522 523 + if ((olca->options & eOpenLogicalChannelAck_separateStack) && 524 + olca->separateStack.networkAddress.choice == 525 + eNetworkAccessParameters_networkAddress_localAreaAddress) { 526 + ret = expect_t120(pskb, ct, ctinfo, data, dataoff, 527 + &olca->separateStack.networkAddress. 528 + localAreaAddress); 529 + if (ret < 0) 530 + return -1; 531 + } 532 + 523 533 return 0; 524 534 } 525 535