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

Function tcp_signature_apply

freebsd/netipsec/xform_tcp.c:125–131  ·  view source on GitHub ↗

* Callback function invoked by m_apply() to digest TCP segment data * contained within an mbuf chain. */

Source from the content-addressed store, hash-verified

123 * contained within an mbuf chain.
124 */
125static int
126tcp_signature_apply(void *fstate, void *data, u_int len)
127{
128
129 MD5Update(fstate, (u_char *)data, len);
130 return (0);
131}
132
133#ifdef INET
134static int

Callers

nothing calls this directly

Calls 1

MD5UpdateFunction · 0.85

Tested by

no test coverage detected