mirror of
https://github.com/morgan9e/systemd
synced 2026-04-16 01:16:10 +09:00
14 lines
192 B
C
14 lines
192 B
C
/*
|
|
* netinet/ip.h
|
|
*/
|
|
|
|
#ifndef _NETINET_IP_H
|
|
#define _NETINET_IP_H
|
|
|
|
#include <endian.h>
|
|
#include <linux/ip.h>
|
|
|
|
#define IP_DF 0x4000 /* Flag: "Don't Fragment" */
|
|
|
|
#endif /* _NETINET_IP_H */
|