| 3021 | } |
| 3022 | |
| 3023 | static HTTPContext *find_rtp_session(const char *session_id) |
| 3024 | { |
| 3025 | HTTPContext *c; |
| 3026 | |
| 3027 | if (session_id[0] == '\0') |
| 3028 | return NULL; |
| 3029 | |
| 3030 | for(c = first_http_ctx; c != NULL; c = c->next) { |
| 3031 | if (!strcmp(c->session_id, session_id)) |
| 3032 | return c; |
| 3033 | } |
| 3034 | return NULL; |
| 3035 | } |
| 3036 | |
| 3037 | static RTSPTransportField *find_transport(RTSPMessageHeader *h, enum RTSPLowerTransport lower_transport) |
| 3038 | { |
no outgoing calls
no test coverage detected