From f5aca1a1b402bd7ebc944dc6e6fe65828d863365 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 02:14:08 +0000 Subject: Bu::FString is now String, and there's a shell script to fix any other programs that were using fstring, I hope. --- src/fastcgi.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/fastcgi.h') diff --git a/src/fastcgi.h b/src/fastcgi.h index 7c1c04c..4463bee 100644 --- a/src/fastcgi.h +++ b/src/fastcgi.h @@ -8,7 +8,7 @@ #ifndef BU_FAST_CGI_H #define BU_FAST_CGI_H -#include "bu/fstring.h" +#include "bu/string.h" #include "bu/hash.h" #include "bu/array.h" #include "bu/tcpsocket.h" @@ -27,7 +27,7 @@ namespace Bu static bool isEmbedded(); - typedef Bu::Hash StrHash; + typedef Bu::Hash StrHash; enum RequestType { typeBeginRequest = 1, @@ -86,8 +86,8 @@ namespace Bu typedef struct Channel { Channel() : uFlags( 0 ) { } StrHash hParams; - Bu::FString sStdIn; - Bu::FString sData; + Bu::String sStdIn; + Bu::String sData; uint8_t uFlags; } Channel; @@ -104,7 +104,7 @@ namespace Bu virtual void onInit() { }; virtual int onRequest( const StrHash &hParams, - const Bu::FString &sStdIn, Bu::Stream &sStdOut, + const Bu::String &sStdIn, Bu::Stream &sStdOut, Bu::Stream &sStdErr )=0; virtual void onUninit() { }; -- cgit v1.2.3