Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions ACE/apps/JAWS/server/HTTP_Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,14 @@
#include "HTTP_Server.h"
#include <memory>

// class is overkill
class JAWS
namespace JAWS
{
public:
class JAWS
{
public:
static constexpr int JAWS_POOL = 0;
static constexpr int JAWS_PER_REQUEST = 1;

static constexpr int JAWS_SYNCH = 0;
static constexpr int JAWS_ASYNCH = 2;
};
};
}

void
HTTP_Server::parse_args (int argc, ACE_TCHAR *argv[])
Expand Down
Loading