Search found 3 matches

by zyp568
Sun May 20, 2018 3:13 pm
Forum: Support and Development
Topic: Socket problem with love-11.1
Replies: 5
Views: 5860

Re: Socket problem with love-11.1

Thanks a lot, it is working fine now.
by zyp568
Sun May 20, 2018 11:40 am
Forum: Support and Development
Topic: Socket problem with love-11.1
Replies: 5
Views: 5860

Re: Socket problem with love-11.1

Thanks a lot. Here are the code for setting up TCP-Server : o.server = Socket.tcp() o.server:settimeout(0) -- local res, err = o.server:bind('*', 5688) local res, err = o.server:bind('10.32.24.60', 5688) if (res == nil) then error(err) end o.server:listen(1) MacOSX-10.13.4 + Love-0.10.2 : o.server:b...
by zyp568
Sat May 19, 2018 10:12 am
Forum: Support and Development
Topic: Socket problem with love-11.1
Replies: 5
Views: 5860

Socket problem with love-11.1

I code a program using love-0.10.2, and it worked fine. I updated love-0.10.2 to love-11.1 a few days ago, and then I got a problem with tcp server, I just can NOT connected to tcp server in the program. When I turn 11.1 to 0.10.2, the problem just gone, everything worked fine. So, there may be a bu...