Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* net/atm/signaling.h - ATM signaling */
0003 
0004 /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
0005 
0006 
0007 #ifndef NET_ATM_SIGNALING_H
0008 #define NET_ATM_SIGNALING_H
0009 
0010 #include <linux/atm.h>
0011 #include <linux/atmdev.h>
0012 #include <linux/atmsvc.h>
0013 
0014 
0015 extern struct atm_vcc *sigd; /* needed in svc_release */
0016 
0017 
0018 /*
0019  * sigd_enq is a wrapper for sigd_enq2, covering the more common cases, and
0020  * avoiding huge lists of null values.
0021  */
0022 
0023 void sigd_enq2(struct atm_vcc *vcc,enum atmsvc_msg_type type,
0024     struct atm_vcc *listen_vcc,const struct sockaddr_atmpvc *pvc,
0025     const struct sockaddr_atmsvc *svc,const struct atm_qos *qos,int reply);
0026 void sigd_enq(struct atm_vcc *vcc,enum atmsvc_msg_type type,
0027     struct atm_vcc *listen_vcc,const struct sockaddr_atmpvc *pvc,
0028     const struct sockaddr_atmsvc *svc);
0029 int sigd_attach(struct atm_vcc *vcc);
0030 
0031 #endif