diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-06-05 16:49:32 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-06-14 14:05:28 +0200 |
commit | aeb53fcd725fe291afa6ffb683373c8e589afa64 (patch) | |
tree | 3f9840107501dc98472406dadfa16eba860ca61b /src/ipcpd/ipcp.h | |
parent | a76b638a370cd0cdd087ec780e6b1f8d18bac66d (diff) | |
download | ouroboros-aeb53fcd725fe291afa6ffb683373c8e589afa64.tar.gz ouroboros-aeb53fcd725fe291afa6ffb683373c8e589afa64.zip |
ipcpd: Adds a shim over IEEE 802.2 over IEEE 802.3
This adds a shim over LLC over Ethernet. It uses the raw socket API to
send messages directly over an interface.
Diffstat (limited to 'src/ipcpd/ipcp.h')
-rw-r--r-- | src/ipcpd/ipcp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ipcpd/ipcp.h b/src/ipcpd/ipcp.h index 70da0675..63f9677a 100644 --- a/src/ipcpd/ipcp.h +++ b/src/ipcpd/ipcp.h @@ -45,8 +45,8 @@ struct ipcp { }; struct ipcp * ipcp_instance_create(); -void * ipcp_main_loop(void * o); -void * ipcp_sdu_loop(void * o); -int ipcp_arg_check(int argc, char * argv[]); +void * ipcp_main_loop(void * o); +void * ipcp_sdu_loop(void * o); +int ipcp_arg_check(int argc, char * argv[]); #endif |