Changeset 2f19103 in mainline for uspace/srv/net/tcp/ucall.h
- Timestamp:
- 2015-05-22T07:21:37Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 58e9dec
- Parents:
- bf7587b0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/ucall.h
rbf7587b0 r2f19103 1 1 /* 2 * Copyright (c) 201 1Jiri Svoboda2 * Copyright (c) 2015 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 36 36 #define UCALL_H 37 37 38 #include <inet/endpoint.h> 38 39 #include <sys/types.h> 39 40 #include "tcp_type.h" … … 42 43 * User calls 43 44 */ 44 extern tcp_error_t tcp_uc_open( tcp_sock_t *, tcp_sock_t *, acpass_t,45 extern tcp_error_t tcp_uc_open(inet_ep2_t *, acpass_t, 45 46 tcp_open_flags_t, tcp_conn_t **); 46 47 extern tcp_error_t tcp_uc_send(tcp_conn_t *, void *, size_t, xflags_t); … … 56 57 * Arriving segments 57 58 */ 58 extern void tcp_as_segment_arrived( tcp_sockpair_t *, tcp_segment_t *);59 extern void tcp_as_segment_arrived(inet_ep2_t *, tcp_segment_t *); 59 60 60 61 /*
Note:
See TracChangeset
for help on using the changeset viewer.