We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 148116e commit c5120e9Copy full SHA for c5120e9
ldn_mitm/source/ldnmitm_main.cpp
@@ -49,8 +49,6 @@ namespace ams {
49
}
50
51
constexpr const ::SocketInitConfig LibnxSocketInitConfig = {
52
- .bsdsockets_version = 1,
53
-
54
.tcp_tx_buf_size = 0x800,
55
.tcp_rx_buf_size = 0x1000,
56
.tcp_tx_buf_max_size = 0x2000,
@@ -68,7 +66,7 @@ namespace ams {
68
66
alignas(os::MemoryPageSize) constinit u8 g_socket_tmem_buffer[GetLibnxBsdTransferMemorySize(std::addressof(LibnxSocketInitConfig))];
69
67
70
constexpr const ::BsdInitConfig LibnxBsdInitConfig = {
71
- .version = LibnxSocketInitConfig.bsdsockets_version,
+ .version = 1,
72
73
.tmem_buffer = g_socket_tmem_buffer,
74
.tmem_buffer_size = sizeof(g_socket_tmem_buffer),
0 commit comments