sco.c (d94e5fcbf1420366dcb4102bafe04dbcfc0d0d4b) sco.c (ec1b4cf74c81bfd0fbe5bf62bafc86c45917e72f)
1/*
2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
4
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as

--- 979 unchanged lines hidden (view full) ---

988 .ioctl = bt_sock_ioctl,
989 .mmap = sock_no_mmap,
990 .socketpair = sock_no_socketpair,
991 .shutdown = sco_sock_shutdown,
992 .setsockopt = sco_sock_setsockopt,
993 .getsockopt = sco_sock_getsockopt
994};
995
1/*
2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
4
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as

--- 979 unchanged lines hidden (view full) ---

988 .ioctl = bt_sock_ioctl,
989 .mmap = sock_no_mmap,
990 .socketpair = sock_no_socketpair,
991 .shutdown = sco_sock_shutdown,
992 .setsockopt = sco_sock_setsockopt,
993 .getsockopt = sco_sock_getsockopt
994};
995
996static struct net_proto_family sco_sock_family_ops = {
996static const struct net_proto_family sco_sock_family_ops = {
997 .family = PF_BLUETOOTH,
998 .owner = THIS_MODULE,
999 .create = sco_sock_create,
1000};
1001
1002static struct hci_proto sco_hci_proto = {
1003 .name = "SCO",
1004 .id = HCI_PROTO_SCO,

--- 64 unchanged lines hidden ---
997 .family = PF_BLUETOOTH,
998 .owner = THIS_MODULE,
999 .create = sco_sock_create,
1000};
1001
1002static struct hci_proto sco_hci_proto = {
1003 .name = "SCO",
1004 .id = HCI_PROTO_SCO,

--- 64 unchanged lines hidden ---