25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

13 satır
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_ */