easysocket/src/main/java/com/easysocket/connection/connect/TcpConnection.java
@@ -6,6 +6,7 @@ import com.easysocket.entity.SocketAddress; import com.easysocket.utils.LogUtil; import com.easysocket.utils.Utils; import com.tencent.bugly.crashreport.CrashReport; import java.io.IOException; import java.io.InputStream; @@ -122,6 +123,7 @@ return socket.getInputStream(); } catch (IOException e) { e.printStackTrace(); CrashReport.postCatchedException(e); } } return null; @@ -134,6 +136,7 @@ return socket.getOutputStream(); } catch (IOException e) { e.printStackTrace(); CrashReport.postCatchedException(e); } } return null;