libc: propagate socket config to child processes

Fixes #3698
This commit is contained in:
Christian Helmuth 2020-03-16 12:57:36 +01:00 committed by Norman Feske
parent 4fe4c9aa63
commit dd524b56fa
1 changed files with 2 additions and 0 deletions

View File

@ -140,6 +140,8 @@ void Libc::Child_config::_generate(Xml_generator &xml, Xml_node config)
xml.attribute("rtc", node.attribute_value("rtc", Path()));
if (node.has_attribute("pipe"))
xml.attribute("pipe", node.attribute_value("pipe", Path()));
if (node.has_attribute("socket"))
xml.attribute("socket", node.attribute_value("socket", Path()));
});
{