Просмотр исходного кода

examples/common_components: iperf: fix closing of client socket in TCP server mode

Details of the problem : After iperf ended, the socket was not closed, resulting in the WIFI buffer not being released.
xueyunfei 4 лет назад
Родитель
Сommit
e00580109b
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      examples/common_components/iperf/iperf.c

+ 4 - 0
examples/common_components/iperf/iperf.c

@@ -267,6 +267,10 @@ static esp_err_t IRAM_ATTR iperf_run_tcp_server(void)
 
     socket_recv(client_socket, listen_addr, IPERF_TRANS_TYPE_TCP);
 exit:
+    if (client_socket != -1) {
+        close(client_socket);
+    }
+
     if (listen_socket != -1) {
         shutdown(listen_socket, 0);
         close(listen_socket);