sock.c (123656d4cc8c946f578ebd18c2050f5251720428) | sock.c (4fc268d24ceb9f4150777c1b5b2b8e6214e56b2b) |
---|---|
1/* 2 CMTP implementation for Linux Bluetooth stack (BlueZ). 3 Copyright (C) 2002-2003 Marcel Holtmann <marcel@holtmann.org> 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License version 2 as 7 published by the Free Software Foundation; 8 --- 10 unchanged lines hidden (view full) --- 19 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 20 SOFTWARE IS DISCLAIMED. 21*/ 22 23#include <linux/config.h> 24#include <linux/module.h> 25 26#include <linux/types.h> | 1/* 2 CMTP implementation for Linux Bluetooth stack (BlueZ). 3 Copyright (C) 2002-2003 Marcel Holtmann <marcel@holtmann.org> 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License version 2 as 7 published by the Free Software Foundation; 8 --- 10 unchanged lines hidden (view full) --- 19 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 20 SOFTWARE IS DISCLAIMED. 21*/ 22 23#include <linux/config.h> 24#include <linux/module.h> 25 26#include <linux/types.h> |
27#include <linux/capability.h> |
|
27#include <linux/errno.h> 28#include <linux/kernel.h> 29#include <linux/sched.h> 30#include <linux/slab.h> 31#include <linux/poll.h> 32#include <linux/fcntl.h> 33#include <linux/skbuff.h> 34#include <linux/socket.h> --- 191 unchanged lines hidden --- | 28#include <linux/errno.h> 29#include <linux/kernel.h> 30#include <linux/sched.h> 31#include <linux/slab.h> 32#include <linux/poll.h> 33#include <linux/fcntl.h> 34#include <linux/skbuff.h> 35#include <linux/socket.h> --- 191 unchanged lines hidden --- |