mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
23 lines
368 B
C
23 lines
368 B
C
/* Stuff that should go into include/linux/socket.h */
|
|
|
|
#ifndef SDP_SOCKET_H
|
|
#define SDP_SOCKET_H
|
|
|
|
#ifndef __FreeBSD__
|
|
#ifndef AF_INET_SDP
|
|
#define AF_INET_SDP 27
|
|
#define PF_INET_SDP AF_INET_SDP
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef SDP_ZCOPY_THRESH
|
|
#define SDP_ZCOPY_THRESH 80
|
|
#endif
|
|
|
|
#ifndef SDP_LAST_BIND_ERR
|
|
#define SDP_LAST_BIND_ERR 81
|
|
#endif
|
|
|
|
/* TODO: AF_INET6_SDP ? */
|
|
|
|
#endif
|