rose_in.c (4b4193256c8d3bc3a5397b5cd9494c2ad386317d) | rose_in.c (b6459415b384cb829f0b2a4268f211c789f6cf0b) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * 4 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk) 5 * 6 * Most of this code is based on the SDL diagrams published in the 7th ARRL 7 * Computer Networking Conference papers. The diagrams have mistakes in them, 8 * but are mostly correct. Before you modify the code could you read the SDL 9 * diagrams as the code is not obvious and probably very easy to break. 10 */ 11#include <linux/errno.h> | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * 4 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk) 5 * 6 * Most of this code is based on the SDL diagrams published in the 7th ARRL 7 * Computer Networking Conference papers. The diagrams have mistakes in them, 8 * but are mostly correct. Before you modify the code could you read the SDL 9 * diagrams as the code is not obvious and probably very easy to break. 10 */ 11#include <linux/errno.h> |
12#include <linux/filter.h> |
|
12#include <linux/types.h> 13#include <linux/socket.h> 14#include <linux/in.h> 15#include <linux/kernel.h> 16#include <linux/timer.h> 17#include <linux/string.h> 18#include <linux/sockios.h> 19#include <linux/net.h> --- 274 unchanged lines hidden --- | 13#include <linux/types.h> 14#include <linux/socket.h> 15#include <linux/in.h> 16#include <linux/kernel.h> 17#include <linux/timer.h> 18#include <linux/string.h> 19#include <linux/sockios.h> 20#include <linux/net.h> --- 274 unchanged lines hidden --- |