一、ABLMediaServer的处理
1、涉及的数据结构
RtspProtect RtspProtectArray[MaxRtspProtectCount]; int RtspProtectArrayOrder; struct RtspFieldValue { char szKey[64]; char szValue[384]; }; //rtsp 协议数据 struct RtspProtect { char szRtspCmdString[512];// OPTIONS rtsp://190.15.240.36:554/Camera_00001.sdp RTSP/1.0 char szRtspCommand[64];// rtsp命令名字 ,OPTIONS ANNOUNCE SETUP RECORD char szRtspURL[512];// rtsp://190.15.240.36:554/Camera_00001.sdp RtspFieldValue rtspField[MaxRtspValueCount]; char szRtspContentSDP[1024]; // 媒体描述内容 int nRtspSDPLength; };
标签:协议,rtsp,sdp,处理,554,RTSP,char,64 From: https://www.cnblogs.com/zeliangzhang/p/16865247.html