https://github.com/torvalds/linux
Raw File
Tip revision: 41bccc98fb7931d63d03f326a746ac4d429c1dd3 authored by Linus Torvalds on 29 January 2024, 01:01:12 UTC
Linux 6.8-rc2
Tip revision: 41bccc9
scm.h
#ifndef NET_UNIX_SCM_H
#define NET_UNIX_SCM_H

extern struct list_head gc_inflight_list;
extern spinlock_t unix_gc_lock;

int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb);
void unix_detach_fds(struct scm_cookie *scm, struct sk_buff *skb);

#endif
back to top