// SPDX-License-Identifier: GPL-2.0-or-later /* * X.25 Packet Layer release 002 * * This is ALPHA test software. This code may break your machine, * randomly fail to work with new releases, misbehave and/or generally * screw up. It might even work. * * This code REQUIRES 2.1.15 or higher * * History * X.25 001 Jonathan Naylor Started coding. * X.25 002 Jonathan Naylor New timer architecture. * 2000-09-04 Henner Eisen Prevented x25_output() skb leakage. * 2000-10-27 Henner Eisen MSG_DONTWAIT for fragment allocation. * 2000-11-10 Henner Eisen x25_send_iframe(): re-queued frames * needed cleaned seq-number fields. */ #include <linux/slab.h> #include <linux/socket.h> #include <linux/kernel.h> #include <linux/string.h> #include <linux/skbuff.h> #include <net/sock.h> #include <net/x25.h> static int x25_pacsize_to_bytes(unsigned int pacsize) { … } /* * This is where all X.25 information frames pass. * * Returns the amount of user data bytes sent on success * or a negative error code on failure. */ int x25_output(struct sock *sk, struct sk_buff *skb) { … } /* * This procedure is passed a buffer descriptor for an iframe. It builds * the rest of the control part of the frame and then writes it out. */ static void x25_send_iframe(struct sock *sk, struct sk_buff *skb) { … } void x25_kick(struct sock *sk) { … } /* * The following routines are taken from page 170 of the 7th ARRL Computer * Networking Conference paper, as is the whole state machine. */ void x25_enquiry_response(struct sock *sk) { … }