mirror of
https://github.com/RangeNetworks/openbts.git
synced 2025-10-23 07:42:01 +00:00
9 lines
193 B
C++
9 lines
193 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);
|
|
}
|