* Callback function invoked by m_apply() to digest TCP segment data * contained within an mbuf chain. */
| 123 | * contained within an mbuf chain. |
| 124 | */ |
| 125 | static int |
| 126 | tcp_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 |
| 134 | static int |
nothing calls this directly
no test coverage detected