xref: /linux/include/uapi/linux/if_x25.h (revision 4b4193256c8d3bc3a5397b5cd9494c2ad386317d)
1e2be04c7SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
2607ca46eSDavid Howells /*
3607ca46eSDavid Howells  *  Linux X.25 packet to device interface
4607ca46eSDavid Howells  *
5607ca46eSDavid Howells  *  This program is free software; you can redistribute it and/or modify
6607ca46eSDavid Howells  *  it under the terms of the GNU General Public License as published by
7607ca46eSDavid Howells  *  the Free Software Foundation; either version 2 of the License, or
8607ca46eSDavid Howells  *  (at your option) any later version.
9607ca46eSDavid Howells  *
10607ca46eSDavid Howells  *  This program is distributed in the hope that it will be useful,
11607ca46eSDavid Howells  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12607ca46eSDavid Howells  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13607ca46eSDavid Howells  *  GNU General Public License for more details.
14607ca46eSDavid Howells  */
15607ca46eSDavid Howells 
16607ca46eSDavid Howells #ifndef _IF_X25_H
17607ca46eSDavid Howells #define _IF_X25_H
18607ca46eSDavid Howells 
19607ca46eSDavid Howells #include <linux/types.h>
20607ca46eSDavid Howells 
21*883780afSMauro Carvalho Chehab /* Documentation/networking/x25-iface.rst */
22607ca46eSDavid Howells #define X25_IFACE_DATA		0x00
23607ca46eSDavid Howells #define X25_IFACE_CONNECT	0x01
24607ca46eSDavid Howells #define X25_IFACE_DISCONNECT	0x02
25607ca46eSDavid Howells #define X25_IFACE_PARAMS	0x03
26607ca46eSDavid Howells 
27607ca46eSDavid Howells #endif /* _IF_X25_H */
28