You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
483 B
18 lines
483 B
/* net/atm/addr.h - Local ATM address registry */
|
|
|
|
/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
|
|
|
|
|
|
#ifndef NET_ATM_ADDR_H
|
|
#define NET_ATM_ADDR_H
|
|
|
|
#include <linux/atm.h>
|
|
#include <linux/atmdev.h>
|
|
|
|
|
|
void atm_reset_addr(struct atm_dev *dev);
|
|
int atm_add_addr(struct atm_dev *dev,struct sockaddr_atmsvc *addr);
|
|
int atm_del_addr(struct atm_dev *dev,struct sockaddr_atmsvc *addr);
|
|
int atm_get_addr(struct atm_dev *dev,struct sockaddr_atmsvc __user *buf,size_t size);
|
|
|
|
#endif
|
|
|