* Send a message to our controlling node that we've failed. */
| 1170 | * Send a message to our controlling node that we've failed. |
| 1171 | */ |
| 1172 | static void |
| 1173 | ng_l2tp_seq_failure(priv_p priv) |
| 1174 | { |
| 1175 | struct ng_mesg *msg; |
| 1176 | int error; |
| 1177 | |
| 1178 | NG_MKMESSAGE(msg, NGM_L2TP_COOKIE, NGM_L2TP_ACK_FAILURE, 0, M_NOWAIT); |
| 1179 | if (msg == NULL) |
| 1180 | return; |
| 1181 | NG_SEND_MSG_ID(error, priv->node, msg, priv->ftarget, 0); |
| 1182 | } |
| 1183 | |
| 1184 | /************************************************************************ |
| 1185 | SEQUENCE NUMBER HANDLING |
no outgoing calls
no test coverage detected