18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci/* net/atm/signaling.h - ATM signaling */
38c2ecf20Sopenharmony_ci
48c2ecf20Sopenharmony_ci/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
58c2ecf20Sopenharmony_ci
68c2ecf20Sopenharmony_ci
78c2ecf20Sopenharmony_ci#ifndef NET_ATM_SIGNALING_H
88c2ecf20Sopenharmony_ci#define NET_ATM_SIGNALING_H
98c2ecf20Sopenharmony_ci
108c2ecf20Sopenharmony_ci#include <linux/atm.h>
118c2ecf20Sopenharmony_ci#include <linux/atmdev.h>
128c2ecf20Sopenharmony_ci#include <linux/atmsvc.h>
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci
158c2ecf20Sopenharmony_ciextern struct atm_vcc *sigd; /* needed in svc_release */
168c2ecf20Sopenharmony_ci
178c2ecf20Sopenharmony_ci
188c2ecf20Sopenharmony_ci/*
198c2ecf20Sopenharmony_ci * sigd_enq is a wrapper for sigd_enq2, covering the more common cases, and
208c2ecf20Sopenharmony_ci * avoiding huge lists of null values.
218c2ecf20Sopenharmony_ci */
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_civoid sigd_enq2(struct atm_vcc *vcc,enum atmsvc_msg_type type,
248c2ecf20Sopenharmony_ci    struct atm_vcc *listen_vcc,const struct sockaddr_atmpvc *pvc,
258c2ecf20Sopenharmony_ci    const struct sockaddr_atmsvc *svc,const struct atm_qos *qos,int reply);
268c2ecf20Sopenharmony_civoid sigd_enq(struct atm_vcc *vcc,enum atmsvc_msg_type type,
278c2ecf20Sopenharmony_ci    struct atm_vcc *listen_vcc,const struct sockaddr_atmpvc *pvc,
288c2ecf20Sopenharmony_ci    const struct sockaddr_atmsvc *svc);
298c2ecf20Sopenharmony_ciint sigd_attach(struct atm_vcc *vcc);
308c2ecf20Sopenharmony_ci
318c2ecf20Sopenharmony_ci#endif
32