Changeset 8b863a62 in mainline for uspace/lib/c/include/inet/iplink_srv.h
- Timestamp:
- 2014-04-16T17:14:06Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f857e8b
- Parents:
- dba3e2c (diff), 70b570c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/lib/c/include/inet/iplink_srv.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/inet/iplink_srv.h
rdba3e2c r8b863a62 39 39 #include <fibril_synch.h> 40 40 #include <stdbool.h> 41 #include <sys/types.h> 41 #include <inet/addr.h> 42 #include <inet/iplink.h> 42 43 43 44 struct iplink_ops; … … 51 52 } iplink_srv_t; 52 53 53 typedef struct {54 uint32_t ipv4;55 } iplink_srv_addr_t;56 57 /** IP link Service Data Unit */58 typedef struct {59 /** Local source address */60 iplink_srv_addr_t lsrc;61 /** Local destination address */62 iplink_srv_addr_t ldest;63 /** Serialized IP packet */64 void *data;65 /** Size of @c data in bytes */66 size_t size;67 } iplink_srv_sdu_t;68 69 54 typedef struct iplink_ops { 70 55 int (*open)(iplink_srv_t *); 71 56 int (*close)(iplink_srv_t *); 72 int (*send)(iplink_srv_t *, iplink_srv_sdu_t *); 57 int (*send)(iplink_srv_t *, iplink_sdu_t *); 58 int (*send6)(iplink_srv_t *, iplink_sdu6_t *); 73 59 int (*get_mtu)(iplink_srv_t *, size_t *); 74 int (*addr_add)(iplink_srv_t *, iplink_srv_addr_t *); 75 int (*addr_remove)(iplink_srv_t *, iplink_srv_addr_t *); 60 int (*get_mac48)(iplink_srv_t *, addr48_t *); 61 int (*addr_add)(iplink_srv_t *, inet_addr_t *); 62 int (*addr_remove)(iplink_srv_t *, inet_addr_t *); 76 63 } iplink_ops_t; 77 64 … … 79 66 80 67 extern int iplink_conn(ipc_callid_t, ipc_call_t *, void *); 81 extern int iplink_ev_recv(iplink_srv_t *, iplink_ srv_sdu_t *);68 extern int iplink_ev_recv(iplink_srv_t *, iplink_recv_sdu_t *, ip_ver_t); 82 69 83 70 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
