Android Question B4A FTP_ListCompleted Error: (ErrnoException) android.system.ErrnoException: bind failed: EADDRNOTAV

Jhonn

Member
This errors occurs when app runs any times, no all times.

B4X:
Sub FTP_ListCompleted (ServerPath As String, Success As Boolean, Folders() As FTPEntry, Files() As FTPEntry)
   
    If Success == False Then
        Log( "FTP List Error: " & LastException)  'Error Here
        Return
    End If

Logs:
  1. FTP List Error: (ErrnoException) android.system.ErrnoException: sendto failed: EPIPE (Broken pipe)
  2. FTP List Error: (ErrnoException) android.system.ErrnoException: bind failed: EADDRNOTAVAIL (Cannot assign requested address)
 
Top