diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-04-02 21:06:27 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-04-02 21:54:08 +0200 |
commit | 3bbad34a02350c96cb44d53da510c6273b6910d7 (patch) | |
tree | 8e0ea9f249f1f2280fa8e9cd420fbf1591658bec /lib/tsocket/tsocket.h | |
parent | 7e1411b5c7afa8b47d76ddb1fb93973201bb08a8 (diff) | |
download | samba-3bbad34a02350c96cb44d53da510c6273b6910d7.tar.gz samba-3bbad34a02350c96cb44d53da510c6273b6910d7.tar.xz samba-3bbad34a02350c96cb44d53da510c6273b6910d7.zip |
tsocket: remove DGRAM support from tsocket_context
metze
Diffstat (limited to 'lib/tsocket/tsocket.h')
-rw-r--r-- | lib/tsocket/tsocket.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/tsocket/tsocket.h b/lib/tsocket/tsocket.h index ec891c34dd..8f69490012 100644 --- a/lib/tsocket/tsocket.h +++ b/lib/tsocket/tsocket.h @@ -34,7 +34,6 @@ struct iovec; enum tsocket_type { TSOCKET_TYPE_STREAM = 1, - TSOCKET_TYPE_DGRAM, TSOCKET_TYPE_MESSAGE }; @@ -68,14 +67,6 @@ int tsocket_readv(struct tsocket_context *sock, int tsocket_writev(struct tsocket_context *sock, const struct iovec *vector, size_t count); -ssize_t tsocket_recvfrom(struct tsocket_context *sock, - uint8_t *data, size_t len, - TALLOC_CTX *addr_ctx, - struct tsocket_address **src_addr); -ssize_t tsocket_sendto(struct tsocket_context *sock, - const uint8_t *data, size_t len, - const struct tsocket_address *dest_addr); - int tsocket_get_status(const struct tsocket_context *sock); int _tsocket_get_local_address(const struct tsocket_context *sock, @@ -207,29 +198,6 @@ int _tdgram_unix_dgram_socket(const struct tsocket_address *local, * Async helpers */ -struct tevent_req *tsocket_recvfrom_send(struct tsocket_context *sock, - TALLOC_CTX *mem_ctx); -ssize_t tsocket_recvfrom_recv(struct tevent_req *req, - int *perrno, - TALLOC_CTX *mem_ctx, - uint8_t **buf, - struct tsocket_address **src); - -struct tevent_req *tsocket_sendto_send(struct tsocket_context *sock, - TALLOC_CTX *mem_ctx, - const uint8_t *buf, - size_t len, - const struct tsocket_address *dst); -ssize_t tsocket_sendto_recv(struct tevent_req *req, int *perrno); - -struct tevent_req *tsocket_sendto_queue_send(TALLOC_CTX *mem_ctx, - struct tsocket_context *sock, - struct tevent_queue *queue, - const uint8_t *buf, - size_t len, - struct tsocket_address *dst); -ssize_t tsocket_sendto_queue_recv(struct tevent_req *req, int *perrno); - struct tevent_req *tsocket_connect_send(struct tsocket_context *sock, TALLOC_CTX *mem_ctx, const struct tsocket_address *dst); |