Search found 2 matches

by vriesm
Fri Sep 08, 2006 5:35 am
Forum: PSP Lua Player Development
Topic: udpConnect broadcast problems
Replies: 0
Views: 1715

udpConnect broadcast problems

I'm using the netlib function udpConnect [Socket Socket.udpConnect(host,port)] to make a wake on lan script. It seems that I cannot use a broadcast address for the host part of this function. Any IP ending on 255 results in an error for the function udpSend. How can I solve this?
by vriesm
Wed Sep 06, 2006 9:50 pm
Forum: PSP Lua Player Development
Topic: tostring problems
Replies: 1
Views: 2033

tostring problems

I have written the following. n3 = 116 s3 = tostring("\\" .. n3) graphicsPrintln(s3) -- Result: \116 s3 = tostring("s3") graphicsPrintln(s3) -- Result: s3 s3 = tostring("\116") graphicsPrintln(s3) -- Result: t I would like to have the result from the last statement, but...