view src/endp_register.c @ 37:8f1700a42ca5

set_remote: add functions for IPv6 and for sockaddr_{in,in6} A convenient way to pass in remote end address as struct sockaddr_in is needed for tw-border-mgw; IPv6 support will be needed in order to bring twrtp_endp into Osmocom mainline.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 23 Nov 2024 19:08:28 +0000
parents 695fdb670d30
children
line wrap: on
line source

/*
 * Here we implement the step of fd registration in twrtp_endp.
 */

#include <stdint.h>
#include <stdbool.h>
#include <unistd.h>

#include <osmocom/core/osmo_io.h>
#include <osmocom/core/utils.h>

#include <themwi/rtp/endp.h>

int twrtp_endp_register_fds(struct twrtp_endp *endp)
{
	int rc;

	if (endp->register_done)
		return 0;

	rc = osmo_iofd_register(endp->iofd_rtp, endp->rtp_fd);
	if (rc < 0) {
		close(endp->rtp_fd);
		close(endp->rtcp_fd);
		return rc;
	}

	rc = osmo_iofd_register(endp->iofd_rtcp, endp->rtcp_fd);
	if (rc < 0) {
		osmo_iofd_close(endp->iofd_rtp);
		close(endp->rtcp_fd);
		return rc;
	}

	endp->register_done = true;
	return 0;
}