Magellan Linux

Contents of /alx-src/tags/kernel26-2.6.12-alx-r9/net/atm/signaling.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 630 - (show annotations) (download)
Wed Mar 4 11:03:09 2009 UTC (15 years, 3 months ago) by niro
File MIME type: text/plain
File size: 840 byte(s)
Tag kernel26-2.6.12-alx-r9
1 /* net/atm/signaling.h - ATM signaling */
2
3 /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
4
5
6 #ifndef NET_ATM_SIGNALING_H
7 #define NET_ATM_SIGNALING_H
8
9 #include <linux/atm.h>
10 #include <linux/atmdev.h>
11 #include <linux/atmsvc.h>
12
13
14 extern struct atm_vcc *sigd; /* needed in svc_release */
15
16
17 /*
18 * sigd_enq is a wrapper for sigd_enq2, covering the more common cases, and
19 * avoiding huge lists of null values.
20 */
21
22 void sigd_enq2(struct atm_vcc *vcc,enum atmsvc_msg_type type,
23 struct atm_vcc *listen_vcc,const struct sockaddr_atmpvc *pvc,
24 const struct sockaddr_atmsvc *svc,const struct atm_qos *qos,int reply);
25 void sigd_enq(struct atm_vcc *vcc,enum atmsvc_msg_type type,
26 struct atm_vcc *listen_vcc,const struct sockaddr_atmpvc *pvc,
27 const struct sockaddr_atmsvc *svc);
28 int sigd_attach(struct atm_vcc *vcc);
29
30 #endif