* Create OSP originate cookie and insert it into Record-Route header * param msg SIP message * param inbound Inbound info * param dest Destination */
| 180 | * param dest Destination |
| 181 | */ |
| 182 | void ospRecordOrigTransaction( |
| 183 | struct sip_msg* msg, |
| 184 | osp_inbound* inbound, |
| 185 | osp_dest* dest) |
| 186 | { |
| 187 | int isorig = 1; |
| 188 | |
| 189 | ospRecordTransaction(msg, inbound, dest, isorig); |
| 190 | } |
| 191 | |
| 192 | /* |
| 193 | * Create OSP terminate cookie and insert it into Record-Route header |
no test coverage detected