Codebase list python-passfd / eb07729
New upstream snapshot. Debian Janitor 2 years ago
6 changed file(s) with 17 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
22 Version: 0.2
33 Summary: Python functions to pass file descriptors across UNIX domain sockets
44 Home-page: http://code.google.com/p/python-passfd/
5 Author: Martin Ferrari
6 Author-email: martin.ferrari@gmail.com
5 Author: Martina Ferrari
6 Author-email: tina@tina.pm
77 License: GPLv2
88 Description: This simple extension provides two functions to pass and receive file
99 descriptors across UNIX domain sockets, using the BSD-4.3+ sendmsg() and
1616 passing, and was only tested on Linux. Patches are welcomed!
1717
1818 For more information, see one of the R. Stevens' books:
19 - Richard Stevens: Unix Network Programming, Prentice Hall, 1990;
20 chapter 6.10
19 - Richard Stevens: Unix Network Programming, Prentice Hall, 1990;
20 chapter 6.10
2121
22 - Richard Stevens: Advanced Programming in the UNIX Environment,
23 Addison-Wesley, 1993; chapter 15.3
22 - Richard Stevens: Advanced Programming in the UNIX Environment,
23 Addison-Wesley, 1993; chapter 15.3
2424
2525 Platform: Linux
0 python-passfd (0.2+git20210810.1.e800b4d-1) UNRELEASED; urgency=low
1
2 * New upstream snapshot.
3
4 -- Debian Janitor <janitor@jelmer.uk> Sat, 13 Nov 2021 00:54:41 -0000
5
06 python-passfd (0.2-3) unstable; urgency=medium
17
28 * Update Standards-Version (no changes).
1313 description = 'Python functions to pass file descriptors across ' +
1414 'UNIX domain sockets',
1515 long_description = passfd.__doc__,
16 author = 'Martin Ferrari',
17 author_email = 'martin.ferrari@gmail.com',
16 author = 'Martina Ferrari',
17 author_email = 'tina@tina.pm',
1818 url = 'http://code.google.com/p/python-passfd/',
1919 license = 'GPLv2',
2020 platforms = 'Linux',
44 * Please note that this only supports BSD-4.3+ style file descriptor passing,
55 * and was only tested on Linux. Patches are welcomed!
66 *
7 * Copyright © 2010 Martín Ferrari <martin.ferrari@gmail.com>
7 * Copyright © 2010 Martina Ferrari <tina@tina.pm>
88 *
99 * Inspired by Socket::PassAccessRights, which is:
1010 * Copyright (c) 2000 Sampo Kellomaki <sampo@iki.fi>
2424 # Please note that this only supports BSD-4.3+ style file descriptor passing,
2525 # and was only tested on Linux. Patches are welcomed!
2626 #
27 # Copyright © 2010 Martín Ferrari <martin.ferrari@gmail.com>
27 # Copyright © 2010 Martina Ferrari <tina@tina.pm>
2828 #
2929 # Inspired by Socket::PassAccessRights, which is:
3030 # Copyright (c) 2000 Sampo Kellomaki <sampo@iki.fi>
11 # vim: set fileencoding=utf-8
22 # vim: ts=4:sw=4:et:ai:sts=4
33
4 # Copyright © 2010 Martín Ferrari <martin.ferrari@gmail.com>
4 # Copyright © 2010 Martina Ferrari <tina@tina.pm>
55 #
66 # This program is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by the Free