James Kuszmaul | 4a42b18 | 2021-01-17 11:32:46 -0800 | [diff] [blame^] | 1 | #pragma once |
| 2 | #include <rawrtcc/code.h> |
| 3 | #include <rawrtcdc/external.h> |
| 4 | #include <re.h> |
| 5 | |
| 6 | enum rawrtc_code rawrtc_sctp_common_dtls_role_getter( |
| 7 | enum rawrtc_external_dtls_role* const rolep, // de-referenced, not checked |
| 8 | void* const arg // not checked |
| 9 | ); |
| 10 | |
| 11 | enum rawrtc_code rawrtc_sctp_common_dtls_transport_state_getter( |
| 12 | enum rawrtc_external_dtls_transport_state* const statep, // de-referenced, not checked |
| 13 | void* const arg // not checked |
| 14 | ); |
| 15 | |
| 16 | enum rawrtc_code rawrtc_sctp_common_sctp_transport_outbound_handler( |
| 17 | struct mbuf* const buffer, // not checked |
| 18 | uint8_t const tos, |
| 19 | uint8_t const set_df, |
| 20 | void* const arg // not checked |
| 21 | ); |
| 22 | |
| 23 | void rawrtc_sctp_common_sctp_transport_detach_handler(void* const arg // not checked |
| 24 | ); |