ObjFW  Diff

Differences From Artifact [68c11f76c6]:

To Artifact [f00e17ef0d]:


25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*!
 * @class OFSandbox OFSandbox.h ObjFW/OFSandbox.h
 *
 * @brief A class which describes a sandbox for the application.
 */
@interface OFSandbox: OFObject <OFCopying>
{
	bool _allowsStdIO: 1;
	bool _allowsReadingFiles: 1;
	bool _allowsWritingFiles: 1;
	bool _allowsCreatingFiles: 1;
	bool _allowsCreatingSpecialFiles: 1;
	bool _allowsTemporaryFiles: 1;
	bool _allowsIPSockets: 1;
	bool _allowsMulticastSockets: 1;
	bool _allowsChangingFileAttributes: 1;
	bool _allowsFileOwnerChanges: 1;
	bool _allowsFileLocks: 1;
	bool _allowsUNIXSockets: 1;
	bool _allowsDNS: 1;
	bool _allowsUserDatabaseReading: 1;
	bool _allowsFileDescriptorSending: 1;
	bool _allowsFileDescriptorReceiving: 1;
	bool _allowsTape: 1;
	bool _allowsTTY: 1;
	bool _allowsProcessOperations: 1;
	bool _allowsExec: 1;
	bool _allowsProtExec: 1;
	bool _allowsSetTime: 1;
	bool _allowsPS: 1;
	bool _allowsVMInfo: 1;
	bool _allowsChangingProcessRights: 1;
	bool _allowsPF: 1;
	bool _allowsAudio: 1;
	bool _allowsBPF: 1;
}

/*! Allows IO operations on previously allocated file descriptors. */
@property bool allowsStdIO;

/*! Allows read access to the file system. */
@property bool allowsReadingFiles;







|
<
<
|
<
|
<
<
|
<
|
<
<
|
<
|
<
<
|
<
<
|
<
<
|
<
<
<







25
26
27
28
29
30
31
32


33

34


35

36


37

38


39


40


41



42
43
44
45
46
47
48
/*!
 * @class OFSandbox OFSandbox.h ObjFW/OFSandbox.h
 *
 * @brief A class which describes a sandbox for the application.
 */
@interface OFSandbox: OFObject <OFCopying>
{
	bool _allowsStdIO, _allowsReadingFiles, _allowsWritingFiles;


	bool _allowsCreatingFiles, _allowsCreatingSpecialFiles;

	bool _allowsTemporaryFiles, _allowsIPSockets, _allowsMulticastSockets;


	bool _allowsChangingFileAttributes, _allowsFileOwnerChanges;

	bool _allowsFileLocks, _allowsUNIXSockets, _allowsDNS;


	bool _allowsUserDatabaseReading, _allowsFileDescriptorSending;

	bool _allowsFileDescriptorReceiving, _allowsTape, _allowsTTY;


	bool _allowsProcessOperations, _allowsExec, _allowsProtExec;


	bool _allowsSetTime, _allowsPS, _allowsVMInfo;


	bool _allowsChangingProcessRights, _allowsPF, _allowsAudio, _allowsBPF;



}

/*! Allows IO operations on previously allocated file descriptors. */
@property bool allowsStdIO;

/*! Allows read access to the file system. */
@property bool allowsReadingFiles;