| 35 | } |
| 36 | |
| 37 | OT_ROLE INV_ROLE(OT_ROLE role) |
| 38 | { |
| 39 | if (role == RECEIVER) |
| 40 | return SENDER; |
| 41 | if (role == SENDER) |
| 42 | return RECEIVER; |
| 43 | else |
| 44 | return BOTH; |
| 45 | } |
| 46 | |
| 47 | void send_if_ot_sender(TwoPartyPlayer* P, vector<octetStream>& os, OT_ROLE role) |
| 48 | { |
no outgoing calls
no test coverage detected