dc49af3c59
For now there are two methods: - `NETWORK:IsUrlAllowed()`: Check whether access to a certain URL is allowed. - `NETWORK:HttpRequest()`: Perform an HTTP request. By default access to the network is disabled for all target hosts. It can be enabled by setting `HttpEnable=1` in the preferences. Individual hosts have to be added to `HttpAllowHosts` as a comma separated list to allow access. See included docs for more details on usage.
41 lines
1008 B
C++
41 lines
1008 B
C++
/*
|
|
* IXSelectInterruptPipe.h
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2018-2019 Machine Zone, Inc. All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "IXSelectInterrupt.h"
|
|
#include <mutex>
|
|
#include <stdint.h>
|
|
#include <string>
|
|
|
|
namespace ix
|
|
{
|
|
class SelectInterruptPipe final : public SelectInterrupt
|
|
{
|
|
public:
|
|
SelectInterruptPipe();
|
|
virtual ~SelectInterruptPipe();
|
|
|
|
bool init(std::string& errorMsg) final;
|
|
|
|
bool notify(uint64_t value) final;
|
|
bool clear() final;
|
|
uint64_t read() final;
|
|
int getFd() const final;
|
|
|
|
private:
|
|
// Store file descriptors used by the communication pipe. Communication
|
|
// happens between a control thread and a background thread, which is
|
|
// blocked on select.
|
|
int _fildes[2];
|
|
mutable std::mutex _fildesMutex;
|
|
|
|
// Used to identify the read/write idx
|
|
static const int kPipeReadIndex;
|
|
static const int kPipeWriteIndex;
|
|
};
|
|
} // namespace ix
|