mirror of
https://github.com/falcosecurity/falco.git
synced 2025-09-14 05:51:43 +00:00
fix(userspace/falco): solve minor compilation flaws
Signed-off-by: Jason Dellaluce <jasondellaluce@gmail.com>
This commit is contained in:
@@ -14,6 +14,8 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
@@ -26,7 +26,12 @@ limitations under the License.
|
|||||||
class falco_webserver
|
class falco_webserver
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
falco_webserver() = default;
|
||||||
virtual ~falco_webserver();
|
virtual ~falco_webserver();
|
||||||
|
falco_webserver(falco_webserver&&) = default;
|
||||||
|
falco_webserver& operator = (falco_webserver&&) = default;
|
||||||
|
falco_webserver(const falco_webserver&) = delete;
|
||||||
|
falco_webserver& operator = (const falco_webserver&) = delete;
|
||||||
virtual void start(
|
virtual void start(
|
||||||
const std::shared_ptr<sinsp>& inspector,
|
const std::shared_ptr<sinsp>& inspector,
|
||||||
uint32_t threadiness,
|
uint32_t threadiness,
|
||||||
|
Reference in New Issue
Block a user