Still problem!
Thread1–> Thread2 –> Thread3
Thread1 : Inbound and route to Thread2
Thread2 : Input and outfile /dev/null
OUtbound TPS over_thread
Route to Thread 3
Here is my tcl proc for OVER disposition.
proc over_thread { args } {
global HciConnName HciSiteDir
set mode [keylget args MODE]
set context [keylget args CONTEXT]
if { ! [info exists HciConnName] } { set HciConnName “UNKNOWN_TD” }
switch -exact — $mode {
start {
return “” ;# Nothing specific
}
run {
set mh [keylget args MSGID] ;# Message header
return “{OVER $mh}”
}
}
}