mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
d9a4773194
This patch reintroduces the LwIP stack to libc as a VFS plugin implementing the socket_fs interface. Rather than use LwIP's socket emulation layer this plugin interfaces directly to LwIP raw API and is single threaded. The internal TCP parameters of the stack are untuned. Fix #2050 Fix #2335
14 lines
278 B
PHP
14 lines
278 B
PHP
assert_spec x86
|
|
|
|
proc append_socket_fs_build_components { } {
|
|
global build_components
|
|
append build_components { lib/vfs/lwip }
|
|
}
|
|
|
|
proc socket_fs_plugin {} { return lwip }
|
|
|
|
proc append_socket_fs_boot_modules {} {
|
|
global boot_modules
|
|
append boot_modules { vfs_lwip.lib.so }
|
|
}
|