Sankaraananthan E
Sankaraananthan E
> @itzsankar, does this issue also occur with simulated devices? @Rapsssito no not possible through simulator, need real device to check
@Rapsssito , I have tried but wifi option is not enabling in simulator, do you know how to do it in simulator?
@Rapsssito , I'm able to reproduce it in simulator. I'm getting error response after Some time I'm getting error. But no success response .
This is the code I used to reproduce. ```js import React from 'react'; import { StyleSheet, Text, View, } from 'react-native'; import TcpSocket from 'react-native-tcp-socket'; class App extends React.Component {...
Simulator - Iphone 8 - iOS 14.1 ```js client = TcpSocket.createConnection({ port: serverPort, host: serverHost, }, (address) => { this.updateChatter(`opened client on ${JSON.stringify(address)}`); client.write('Hello, server! Love, Client.'); }); ``` i'm...
@Rapsssito , after long research I reproduced the bug, for reproducing the bug you need a server running in a different machine in the same network. you will receive the...