summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/app-framework/connection/native/linux/conn_tcp.h
blob: c4d5cc86af0979ac18775c196928c72f72982c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

#ifndef CONN_LINUX_TCP_H_
#define CONN_LINUX_TCP_H_

#include "bh_platform.h"

#ifdef __cplusplus
extern "C" {
#endif

int
tcp_open(char *address, uint16 port);

int
tcp_send(int sock, const char *data, int size);

int
tcp_recv(int sock, char *buffer, int buf_size);

#ifdef __cplusplus
}
#endif

#endif