Networking
Monkey Forums/Monkey Programming/Networking
| ||
What is the current state of networking with monkey?. Is Sockets / TCP supported on all targets? If not, is there anything that is? |
| ||
socket.monkey:#If Not BRL_SOCKET_IMPLEMENTED #If LANG="cpp" Or LANG="java" #BRL_SOCKET_IMPLEMENTED=True Import "native/socket.${LANG}" #If LANG="cpp" Import "native/socket_winrt.cpp" #Endif #Endif #If Not BRL_SOCKET_IMPLEMENTED #Error "Native Socket class not implemented." #Endif and: Tcp streams are only currently supported on the android, ios, win8, glfw and stdcpp targets. so html5 & flash & xna do not work |
| ||
I thought I read in a roadmap that webSockets is on the todo list. Any news on that? |