mirror of
https://passt.top/passt
synced 2024-12-22 05:35:23 +00:00
13 lines
332 B
C
13 lines
332 B
C
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
/* Copyright Red Hat
|
||
|
* Author: Laurent Vivier <lvivier@redhat.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef TCP_VU_H
|
||
|
#define TCP_VU_H
|
||
|
|
||
|
int tcp_vu_send_flag(const struct ctx *c, struct tcp_tap_conn *conn, int flags);
|
||
|
int tcp_vu_data_from_sock(const struct ctx *c, struct tcp_tap_conn *conn);
|
||
|
|
||
|
#endif /*TCP_VU_H */
|