diff options
author | 2022-05-13 13:25:47 +1000 | |
---|---|---|
committer | 2022-05-13 13:25:47 +1000 | |
commit | 1c2364d77214d0be0878645796b6f458a09e6cfc (patch) | |
tree | 37778d3fc1a42ca70d5f0c4bd36008887c4e89de /src/osd/modules/file/posixfile.cpp | |
parent | 1911a43b49ede45866b2ff29c99998dac27042c2 (diff) |
Revert "bitbanger: Add udp multicast support (#9744)" (#9749)
This reverts commit 5052eb307a959644677037be52b9a168a68775dd.
Diffstat (limited to 'src/osd/modules/file/posixfile.cpp')
-rw-r--r-- | src/osd/modules/file/posixfile.cpp | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/osd/modules/file/posixfile.cpp b/src/osd/modules/file/posixfile.cpp index 69b7c60d4a0..580288c7d10 100644 --- a/src/osd/modules/file/posixfile.cpp +++ b/src/osd/modules/file/posixfile.cpp @@ -226,9 +226,7 @@ std::error_condition osd_file::open(std::string const &path, std::uint32_t openf { std::string dst; if (posix_check_socket_path(path)) - return posix_open_tcp_socket(path, openflags, file, filesize); - else if (posix_check_udp_path(path)) - return posix_open_udp_socket(path, openflags, file, filesize); + return posix_open_socket(path, openflags, file, filesize); else if (posix_check_ptty_path(path)) return posix_open_ptty(openflags, file, filesize, dst); else if (posix_check_domain_path(path)) @@ -345,16 +343,6 @@ std::error_condition osd_file::openpty(ptr &file, std::string &name) noexcept //============================================================ -// osd_open_udp_socket -//============================================================ - -std::error_condition osd_file::open_udp_socket(std::string const &path, uint32_t openflags, ptr &file, std::uint64_t &filesize) noexcept -{ - return posix_open_udp_socket(path, openflags, file, filesize); -} - - -//============================================================ // osd_file::remove //============================================================ |