From 07a6c6b9cca77c9ea1064b823e0ffd626806d0e5 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Mon, 11 Apr 2011 18:10:00 +0200 Subject: [PATCH] Forgot to update some code to work with new HTTP::Parser naming scheme. --- Connector_HTTP/main.cpp | 2 +- HTTP_Box_Parser/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Connector_HTTP/main.cpp b/Connector_HTTP/main.cpp index a9495465..6ae3392f 100644 --- a/Connector_HTTP/main.cpp +++ b/Connector_HTTP/main.cpp @@ -140,7 +140,7 @@ namespace Connector_HTTP{ FLV::Tag Video_Init;///< Video initialization data, if available. bool FlashFirstVideo = false; bool FlashFirstAudio = false; - HTTPReader HTTP_R, HTTP_S;//HTTP Receiver en HTTP Sender. + HTTP::Parser HTTP_R, HTTP_S;//HTTP Receiver en HTTP Sender. int retval; int poller = epoll_create(1); diff --git a/HTTP_Box_Parser/main.cpp b/HTTP_Box_Parser/main.cpp index 432bbd35..e430e3de 100644 --- a/HTTP_Box_Parser/main.cpp +++ b/HTTP_Box_Parser/main.cpp @@ -21,7 +21,7 @@ /// Then it will take the payload of this box, print the first four bytes, and attempt to parse the whole payload as FLV data. /// The parsed FLV data is then pretty-printed, containing information about the codec parameters and types of tags it encounters. int main(){ - HTTPReader H; + HTTP::Parser H; FLV::Tag F; unsigned int P = 0; char * Payload = 0;