Skip to content

Commit

Permalink
fix max MTU (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
gev authored and mvayngrib committed Apr 10, 2019
1 parent 8c0b945 commit 2f4aadd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
public class UdpReceiverTask extends AsyncTask<Pair<DatagramSocket, UdpReceiverTask.OnDataReceivedListener>, Void, Void> {
private static final String TAG = "UdpReceiverTask";
private static final int MAX_UDP_DATAGRAM_LEN = 1024;
private static final int MAX_UDP_DATAGRAM_LEN = 0xffff;

/**
* An infinite loop to block and read data from the socket.
Expand Down

0 comments on commit 2f4aadd

Please sign in to comment.