]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/atm/signaling.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / net / atm / signaling.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4 2/* net/atm/signaling.h - ATM signaling */
f7d57453 3
1da177e4 4/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
f7d57453 5
1da177e4
LT
6
7#ifndef NET_ATM_SIGNALING_H
8#define NET_ATM_SIGNALING_H
9
10#include <linux/atm.h>
11#include <linux/atmdev.h>
12#include <linux/atmsvc.h>
13
14
15extern struct atm_vcc *sigd; /* needed in svc_release */
16
17
18/*
19 * sigd_enq is a wrapper for sigd_enq2, covering the more common cases, and
20 * avoiding huge lists of null values.
21 */
22
23void sigd_enq2(struct atm_vcc *vcc,enum atmsvc_msg_type type,
24 struct atm_vcc *listen_vcc,const struct sockaddr_atmpvc *pvc,
25 const struct sockaddr_atmsvc *svc,const struct atm_qos *qos,int reply);
26void sigd_enq(struct atm_vcc *vcc,enum atmsvc_msg_type type,
27 struct atm_vcc *listen_vcc,const struct sockaddr_atmpvc *pvc,
28 const struct sockaddr_atmsvc *svc);
29int sigd_attach(struct atm_vcc *vcc);
30
31#endif