GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / net / atm / signaling.h
blob08b2a69cc57273acee42a17b140195875baab94b
1 /* net/atm/signaling.h - ATM signaling */
3 /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
6 #ifndef NET_ATM_SIGNALING_H
7 #define NET_ATM_SIGNALING_H
9 #include <linux/atm.h>
10 #include <linux/atmdev.h>
11 #include <linux/atmsvc.h>
14 extern struct atm_vcc *sigd; /* needed in svc_release */
18 * sigd_enq is a wrapper for sigd_enq2, covering the more common cases, and
19 * avoiding huge lists of null values.
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);
30 #endif