| 2122 | } |
| 2123 | |
| 2124 | int dm_send_message(aaa_conn *_, aaa_message *req, aaa_message **reply) |
| 2125 | { |
| 2126 | /* never provide the reply, just grab the result code, if any */ |
| 2127 | if (reply) |
| 2128 | *reply = NULL; |
| 2129 | return _dm_send_message(_, req, NULL); |
| 2130 | } |
| 2131 | |
| 2132 | int dm_api_send_req(diameter_conn *conn, int app_id, int cmd_code, cJSON *req, diameter_reply *rpl) |
| 2133 | { |
nothing calls this directly
no test coverage detected