udp:sendto wont send special characters like a simple dot
Posted: Wed Nov 22, 2023 3:58 pm
I don't know what its happening but on the following code udp:sendto wont send special characters(or at least the client is not receiving them) like a simple dot character it only sends a-z A-Z and ignores the rest.
i rechecked it hundred times and the code gets executed correctly but sendto wont send those special characters
I attached the whole program, its a linux dependent program
Code: Select all
love.textinput = function(text)
udp:sendto("textinput: " .. text, ip, port)
end
I attached the whole program, its a linux dependent program