This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: AF_NETLINK support for socket module
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: ldeller, loewis
Priority: normal Keywords: patch

Created on 2006-06-05 08:16 by ldeller, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
Python-2.4.3-AF_NETLINK.patch ldeller, 2006-06-05 08:16 netlink patch for the socket module
Messages (2)
msg50430 - (view) Author: lplatypus (ldeller) * Date: 2006-06-05 08:16
I noticed that the socket module contains the
AF_NETLINK constant, but that it was missing the code
to make it work.  Here's a patch to add netlink socket
support.

AF_NETLINK is used on Linux as a means of communication
between the kernel and user processes (though it can
actually be used between user processes too).  See the
netlink(7) manpage for some more details.
msg50431 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2006-06-05 10:49
Logged In: YES 
user_id=21627

This patch is out of date; AF_NETLINK support was added with
patch 1103116.
History
Date User Action Args
2022-04-11 14:56:17adminsetgithub: 43458
2006-06-05 08:16:02ldellercreate