FrameRelay_Emulation: Fix receiving FR from client/user

This commit is contained in:
Harald Welte 2020-09-14 08:48:10 +02:00
parent 19975d3377
commit fd534cd48a
1 changed files with 2 additions and 2 deletions

View File

@ -402,10 +402,10 @@ function main(Q933em_Config q933_cfg) runs on FR_Emulation_CT {
/* CLIENT PORT */
[not q933em.service_affecting_condition] CLIENT.receive(rx_fr) {
[not q933em.service_affecting_condition] CLIENT.receive(tr_FR(?,?)) -> value rx_fr {
FR.send(rx_fr);
}
[q933em.service_affecting_condition] CLIENT.receive(rx_fr) {
[q933em.service_affecting_condition] CLIENT.receive(tr_FR(?,?)) -> value rx_fr {
log("Dropping Tx FR frame while service affecting condition exists");
}