/*
Here s a small IPv4 example: it asks for a portbase and a destination and
starts sending packets to that destination.
这个IPv4版的例子:它要求portbase(本地端口)与destination (目的端口)然后发送消息
同时还监听消息。
例子测试一:
启动一个运行实例,本地地址与目标地址用同一个端口8888
例子测 ...
/*
This IPv4 example listens for incoming packets and automatically adds destinations
for new sources.
这个例子主要是让大家了解下面3个函数的用法。
void OnNewSource(RTPSourceData *dat)
void OnBYEPacket(RTPSourceData *dat)
void OnRemoveSource(RTPSourceData *dat)
具体内容看我的测试文档吧。
例子 ...