Fix POD errors
[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
29This module requires these other modules and libraries:
30
31* Devel::CheckLib
32* libseccomp
33
34COPYRIGHT AND LICENCE
35
36Copyright (C) 2016 by Marius Gavrilescu
37
38This library is free software; you can redistribute it and/or modify
39it under the same terms as Perl itself, either Perl version 5.24.0 or,
40at your option, any later version of Perl 5 you may have available.
41
42
This page took 0.011782 seconds and 4 git commands to generate.