Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/arch/um/drivers/slip.h
10818 views
1
#ifndef __UM_SLIP_H
2
#define __UM_SLIP_H
3
4
#include "slip_common.h"
5
6
struct slip_data {
7
void *dev;
8
char name[sizeof("slnnnnn\0")];
9
char *addr;
10
char *gate_addr;
11
int slave;
12
struct slip_proto slip;
13
};
14
15
extern const struct net_user_info slip_user_info;
16
17
extern int slip_user_read(int fd, void *buf, int len, struct slip_data *pri);
18
extern int slip_user_write(int fd, void *buf, int len, struct slip_data *pri);
19
20
#endif
21
22