#include "net-proxy.h" int tcp_init_server(struct tsnif_handle *h, struct tsnif_np_args *args) { return 0; } int tcp_init_client(struct tsnif_handle *h, struct tsnif_np_args *args) { return 0; } int tcp_close(struct tsnif_handle *h) { return 0; } int tcp_send(struct tsnif_handle *h, struct trans_msg *msg) { return 0; } int tcp_process(struct tsnif_handle *h) { return 0; } struct tsnif_np_prot tcp_prot = { .init_server = tcp_init_server, .init_client = tcp_init_client, .close = tcp_close, .send = tcp_send, .process = tcp_process, };