https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 1b99cb2c2dbc6f868c9611850168f4ed8eb37e7f authored by Jason Self on 23 March 2012, 20:55:35 UTC
Linux-libre 3.0.26-gnu1
Tip revision: 1b99cb2
unix.h
/*
 * Unix network namespace
 */
#ifndef __NETNS_UNIX_H__
#define __NETNS_UNIX_H__

struct ctl_table_header;
struct netns_unix {
	int			sysctl_max_dgram_qlen;
	struct ctl_table_header	*ctl;
};

#endif /* __NETNS_UNIX_H__ */
back to top