You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
288B

  1. #ifndef _rtsp_header_session_h_
  2. #define _rtsp_header_session_h_
  3. struct rtsp_header_session_t
  4. {
  5. char session[128]; // session id
  6. int timeout; // millisecond
  7. };
  8. int rtsp_header_session(const char* field, struct rtsp_header_session_t* session);
  9. #endif /* !_rtsp_header_session_h_ */