bool server = argc == 2;
bool connected = false;
+ uint32_t flags = UTCP_TCP;
+ size_t read_size = 102400;
if(getenv("DROPIN")) dropin = atof(getenv("DROPIN"));
if(getenv("DROPOUT")) dropout = atof(getenv("DROPOUT"));
if(getenv("DROPTO")) dropto = atoi(getenv("DROPTO"));
if(getenv("REORDER")) reorder = atof(getenv("REORDER"));
if(getenv("REORDER_DIST")) reorder_dist = atoi(getenv("REORDER_DIST"));
+ if(getenv("FLAGS")) flags = atoi(getenv("FLAGS"));
+ if(getenv("READ_SIZE")) read_size = atoi(getenv("READ_SIZE"));
char *reference_filename = getenv("REFERENCE");
if(reference_filename)
utcp_set_user_timeout(u, 10);
if(!server)
- c = utcp_connect(u, 1, do_recv, NULL);
+ c = utcp_connect_ex(u, 1, do_recv, NULL, flags);
struct pollfd fds[2] = {
{.fd = 0, .events = POLLIN | POLLERR | POLLHUP},
size_t max = c ? utcp_get_sndbuf_free(c) : 0;
if(max > sizeof buf)
max = sizeof buf;
+ if(max > read_size)
+ max = read_size;
int timeout_ms = timeout.tv_sec * 1000 + timeout.tv_usec / 1000 + 1;
debug("timeout cleared\n");
}
-struct utcp_connection *utcp_connect(struct utcp *utcp, uint16_t dst, utcp_recv_t recv, void *priv) {
+struct utcp_connection *utcp_connect_ex(struct utcp *utcp, uint16_t dst, utcp_recv_t recv, void *priv, uint32_t flags) {
struct utcp_connection *c = allocate_connection(utcp, 0, dst);
if(!c)
return NULL;
+ assert((flags & ~0xf) == 0);
+
+ c->flags = flags;
c->recv = recv;
c->priv = priv;
return c;
}
+struct utcp_connection *utcp_connect(struct utcp *utcp, uint16_t dst, utcp_recv_t recv, void *priv) {
+ return utcp_connect_ex(utcp, dst, recv, priv, UTCP_TCP);
+}
+
void utcp_accept(struct utcp_connection *c, utcp_recv_t recv, void *priv) {
if(c->reapable || c->state != SYN_RECEIVED) {
debug("Error: accept() called on invalid connection %p in state %s\n", c, strstate[c->state]);
struct utcp_connection {
void *priv;
- struct utcp *utcp;
+ struct utcp *const utcp;
+ const uint32_t flags;
};
#else
struct utcp;
#define UTCP_SHUT_WR 1
#define UTCP_SHUT_RDWR 2
+#define UTCP_ORDERED 1
+#define UTCP_RELIABLE 2
+#define UTCP_FRAMED 4
+#define UTCP_DROP_LATE 8
+
+#define UTCP_TCP 3
+#define UTCP_UDP 0
+
typedef bool (*utcp_pre_accept_t)(struct utcp *utcp, uint16_t port);
typedef void (*utcp_accept_t)(struct utcp_connection *utcp_connection, uint16_t port);
extern struct utcp *utcp_init(utcp_accept_t accept, utcp_pre_accept_t pre_accept, utcp_send_t send, void *priv);
extern void utcp_exit(struct utcp *utcp);
+extern struct utcp_connection *utcp_connect_ex(struct utcp *utcp, uint16_t port, utcp_recv_t recv, void *priv, uint32_t flags);
extern struct utcp_connection *utcp_connect(struct utcp *utcp, uint16_t port, utcp_recv_t recv, void *priv);
extern void utcp_accept(struct utcp_connection *utcp, utcp_recv_t recv, void *priv);
extern ssize_t utcp_send(struct utcp_connection *connection, const void *data, size_t len);
struct utcp_connection {
void *priv;
struct utcp *utcp;
+ uint32_t flags;
bool reapable;