Add new constants from libseccomp 2.3.2 and 2.3.3
[linux-seccomp.git] / README
CommitLineData
bcf524c1
MG
1Linux-Seccomp version 0.001
2===========================
3
4Secure Computing (seccomp) is Linux's system call filtering mechanism.
5This system can operate in two modes: I<strict>, where only a very
6small number of system calls are allowed and the more modern I<filter>
7(or seccomp mode 2) which permits advanced filtering of system calls.
8This module is only concerned with the latter.
9
10Linux::Seccomp is a Perl interface to the
11L<libseccomp|https://github.com/seccomp/libseccomp> library which
12provides a simple way to use seccomp mode 2.
13
14It should be mentioned that this module is not production-ready at the
15moment -- work needs to be done to port the libseccomp testsuite and
16the documentation needs to be improved.
17
18INSTALLATION
19
20To install this module type the following:
21
22 perl Makefile.PL
23 make
24 make test
25 make install
26
27DEPENDENCIES
28
03d6d32d 29This module has no dependencies.
bcf524c1
MG
30
31COPYRIGHT AND LICENCE
32
33Copyright (C) 2016 by Marius Gavrilescu
34
35This library is free software; you can redistribute it and/or modify
36it under the same terms as Perl itself, either Perl version 5.24.0 or,
37at your option, any later version of Perl 5 you may have available.
38
39
This page took 0.011852 seconds and 4 git commands to generate.