mirror of
https://github.com/fairwaves/openbts-2.8.git
synced 2025-10-23 07:42:01 +00:00
7 lines
191 B
C++
7 lines
191 B
C++
#include <ortp/ortp.h>
|
|
int main(int argc, char **argv)
|
|
{
|
|
RtpSession * mSession;
|
|
mSession = rtp_session_new(RTP_SESSION_SENDRECV);
|
|
rtp_session_set_local_addr(mSession, "0.0.0.0", -1, -1);
|
|
} |