[Windows Mobile] Connection Manager API C#

Some posts ago i wrote about using RAS to establish internet connection in that post i mentioned about Connection Manager API. Full description you can find on MSDN, but in most cases developers use 2 functions:
ConnMgrEstablishConnection
ConnMgrReleaseConnection
So to establish connection we need just fill one struct and call ConnMgrEstablishConnection. Thats easy, isnt it?

public bool Connect()
{
ConnectionInfo connInfo_ […]

MJPEG to JPEG C++/Delphi

Some years go i received task to receive/record/play from DCS IP camera, it support MPEG4 and MJPEG stream via RTSP/RTP, so problem was:
1. Implement RTSP (just part that will enough to receive stream)
2. Parse/Record received stream
To implement RTSP was enough 1 day of RFC and Sockets dump learning, to recording stream i wrote simple mpeg4/mjpeg […]