Baptiste Assmann | 5d4e4f7 | 2015-04-13 23:08:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * UDP protocol related functions |
| 3 | * |
| 4 | * Copyright 2014 Baptiste Assmann <bedis9@gmail.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <types/global.h> |
| 14 | #include <types/fd.h> |
| 15 | #include <types/proto_udp.h> |
| 16 | |
| 17 | #include <proto/fd.h> |
| 18 | |
| 19 | /* datagram handler callback */ |
Willy Tarreau | 7a798e5 | 2016-04-14 11:13:20 +0200 | [diff] [blame] | 20 | void dgram_fd_handler(int fd) |
Baptiste Assmann | 5d4e4f7 | 2015-04-13 23:08:16 +0200 | [diff] [blame] | 21 | { |
| 22 | struct dgram_conn *dgram = fdtab[fd].owner; |
| 23 | |
| 24 | if (unlikely(!dgram)) |
Willy Tarreau | 7a798e5 | 2016-04-14 11:13:20 +0200 | [diff] [blame] | 25 | return; |
Baptiste Assmann | 5d4e4f7 | 2015-04-13 23:08:16 +0200 | [diff] [blame] | 26 | |
| 27 | if (fd_recv_ready(fd)) |
| 28 | dgram->data->recv(dgram); |
Willy Tarreau | d7f76a0 | 2019-12-10 18:12:04 +0100 | [diff] [blame] | 29 | if (fd_send_ready(fd)) |
Baptiste Assmann | 5d4e4f7 | 2015-04-13 23:08:16 +0200 | [diff] [blame] | 30 | dgram->data->send(dgram); |
| 31 | |
Willy Tarreau | 7a798e5 | 2016-04-14 11:13:20 +0200 | [diff] [blame] | 32 | return; |
Baptiste Assmann | 5d4e4f7 | 2015-04-13 23:08:16 +0200 | [diff] [blame] | 33 | } |