Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

13 lignes
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_ */