mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-01 01:16:55 +02:00

fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
47 lines
787 B
C++
47 lines
787 B
C++
//
|
|
// HTTPBufferAllocator.cpp
|
|
//
|
|
// $Id: //poco/Main/template/class.cpp#4 $
|
|
//
|
|
// Library: Net
|
|
// Package: HTTP
|
|
// Module: HTTPBufferAllocator
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Net/HTTPBufferAllocator.h"
|
|
|
|
|
|
using Poco::MemoryPool;
|
|
|
|
|
|
namespace Poco {
|
|
namespace Net {
|
|
|
|
|
|
MemoryPool HTTPBufferAllocator::_pool(HTTPBufferAllocator::BUFFER_SIZE, 16);
|
|
|
|
|
|
char* HTTPBufferAllocator::allocate(std::streamsize size)
|
|
{
|
|
poco_assert_dbg (size == BUFFER_SIZE);
|
|
|
|
return reinterpret_cast<char*>(_pool.get());
|
|
}
|
|
|
|
|
|
void HTTPBufferAllocator::deallocate(char* ptr, std::streamsize size)
|
|
{
|
|
poco_assert_dbg (size == BUFFER_SIZE);
|
|
|
|
_pool.release(ptr);
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Net
|