• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/

Lines Matching refs:HTTPContext

118 typedef struct HTTPContext {
129 struct HTTPContext *next;
178 struct HTTPContext *rtsp_c;
180 } HTTPContext;
261 static HTTPContext *first_http_ctx;
266 static void close_connection(HTTPContext *c);
269 static int handle_connection(HTTPContext *c);
270 static int http_parse_request(HTTPContext *c);
271 static int http_send_data(HTTPContext *c);
272 static void compute_status(HTTPContext *c);
273 static int open_input_stream(HTTPContext *c, const char *info);
274 static int http_start_receive_data(HTTPContext *c);
275 static int http_receive_data(HTTPContext *c);
278 static int rtsp_parse_request(HTTPContext *c);
279 static void rtsp_cmd_describe(HTTPContext *c, const char *url);
280 static void rtsp_cmd_options(HTTPContext *c, const char *url);
281 static void rtsp_cmd_setup(HTTPContext *c, const char *url, RTSPMessageHeader *h);
282 static void rtsp_cmd_play(HTTPContext *c, const char *url, RTSPMessageHeader *h);
283 static void rtsp_cmd_pause(HTTPContext *c, const char *url, RTSPMessageHeader *h);
284 static void rtsp_cmd_teardown(HTTPContext *c, const char *url, RTSPMessageHeader *h);
291 static HTTPContext *rtp_new_connection(struct sockaddr_in *from_addr,
294 static int rtp_new_av_stream(HTTPContext *c,
296 HTTPContext *rtsp_c);
415 static void log_connection(HTTPContext *c)
548 HTTPContext *rtp_c;
604 HTTPContext *c, *c_next;
739 static void start_wait_request(HTTPContext *c, int is_rtsp)
773 HTTPContext *c = NULL;
790 c = av_mallocz(sizeof(HTTPContext));
818 static void close_connection(HTTPContext *c)
820 HTTPContext **cp, *c1;
905 static int handle_connection(HTTPContext *c)
1166 static int modify_current_stream(HTTPContext *c, char *rates)
1331 static IPAddressACL* parse_dynamic_acl(FFStream *stream, HTTPContext *c)
1380 static int validate_acl_list(IPAddressACL *in_acl, HTTPContext *c)
1397 static int validate_acl(FFStream *stream, HTTPContext *c)
1453 static int http_parse_request(HTTPContext *c)
1775 HTTPContext *wmpc;
1873 static void compute_status(HTTPContext *c)
1875 HTTPContext *c1;
2115 static int open_input_stream(HTTPContext *c, const char *info)
2179 static int64_t get_server_clock(HTTPContext *c)
2187 static int64_t get_packet_send_clock(HTTPContext *c)
2202 static int http_prepare_data(HTTPContext *c)
2433 static int http_send_data(HTTPContext *c)
2476 HTTPContext *rtsp_c;
2552 static int http_start_receive_data(HTTPContext *c)
2595 static int http_receive_data(HTTPContext *c)
2597 HTTPContext *c1;
2753 static void rtsp_reply_header(HTTPContext *c, enum RTSPStatusCode error_number)
2809 static void rtsp_reply_error(HTTPContext *c, enum RTSPStatusCode error_number)
2815 static int rtsp_parse_request(HTTPContext *c)
2950 static void rtsp_cmd_options(HTTPContext *c, const char *url)
2959 static void rtsp_cmd_describe(HTTPContext *c, const char *url)
3005 static HTTPContext *find_rtp_session(const char *session_id)
3007 HTTPContext *c;
3032 static void rtsp_cmd_setup(HTTPContext *c, const char *url,
3040 HTTPContext *rtp_c;
3175 static HTTPContext *find_rtp_session_with_url(const char *url,
3178 HTTPContext *rtp_c;
3209 static void rtsp_cmd_play(HTTPContext *c, const char *url, RTSPMessageHeader *h)
3211 HTTPContext *rtp_c;
3235 static void rtsp_cmd_pause(HTTPContext *c, const char *url, RTSPMessageHeader *h)
3237 HTTPContext *rtp_c;
3260 static void rtsp_cmd_teardown(HTTPContext *c, const char *url, RTSPMessageHeader *h)
3262 HTTPContext *rtp_c;
3284 static HTTPContext *rtp_new_connection(struct sockaddr_in *from_addr,
3288 HTTPContext *c = NULL;
3297 c = av_mallocz(sizeof(HTTPContext));
3350 static int rtp_new_av_stream(HTTPContext *c,
3352 HTTPContext *rtsp_c)