James Kuszmaul | 4a42b18 | 2021-01-17 11:32:46 -0800 | [diff] [blame^] | 1 | #pragma once |
| 2 | #include <rawrtc/ice_gather_options.h> |
| 3 | #include <rawrtc/ice_server.h> |
| 4 | #include <rawrtcc/code.h> |
| 5 | #include <re.h> |
| 6 | |
| 7 | struct rawrtc_ice_gather_options { |
| 8 | enum rawrtc_ice_gather_policy gather_policy; |
| 9 | struct list ice_servers; |
| 10 | }; |
| 11 | |
| 12 | enum rawrtc_code rawrtc_ice_gather_options_add_server_internal( |
| 13 | struct rawrtc_ice_gather_options* const configuration, struct rawrtc_ice_server* const server); |
| 14 | |
| 15 | int rawrtc_ice_gather_options_debug( |
| 16 | struct re_printf* const pf, struct rawrtc_ice_gather_options const* const options); |