Commit 90f20f64 authored by jan.koester's avatar jan.koester
Browse files

test

parent 168d9a82
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ public:
        try {
            Controller controller(getServerSockets());
            controller.runEventloop();
        }catch(libhttppp::HTTPException &e){
        }catch(std::exception &e){
            std::cout << e.what() << std::endl;
        }
    };
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ int main(int /*argc*/, char** argv){
      libhttppp::HttpClient clt(url);
      std::vector<char> back = clt.Get(req);
      std::cout.write(back.data(),back.size());
  }catch(libhttppp::HTTPException &e){
  }catch(std::exception &e){
      std::cerr << e.what() << std::endl;
      return -1;
  }