MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ng_l2tp_seq_failure

Function ng_l2tp_seq_failure

freebsd/netgraph/ng_l2tp.c:1172–1182  ·  view source on GitHub ↗

* Send a message to our controlling node that we've failed. */

Source from the content-addressed store, hash-verified

1170 * Send a message to our controlling node that we've failed.
1171 */
1172static void
1173ng_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

Callers 1

ng_l2tp_seq_rack_timeoutFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected