License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / net / atm / signaling.h
blob2df8220f7ab55f7ab9548b7164a4ebc1588cc448
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* net/atm/signaling.h - ATM signaling */
4 /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
7 #ifndef NET_ATM_SIGNALING_H
8 #define NET_ATM_SIGNALING_H
10 #include <linux/atm.h>
11 #include <linux/atmdev.h>
12 #include <linux/atmsvc.h>
15 extern struct atm_vcc *sigd; /* needed in svc_release */
19 * sigd_enq is a wrapper for sigd_enq2, covering the more common cases, and
20 * avoiding huge lists of null values.
23 void 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);
26 void 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);
29 int sigd_attach(struct atm_vcc *vcc);
31 #endif