Networking

Monkey Forums/Monkey Programming/Networking

Shagwana(Posted 2013) [#1]
What is the current state of networking with monkey?. Is Sockets / TCP supported on all targets?

If not, is there anything that is?


dragon(Posted 2013) [#2]
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


Shagwana(Posted 2013) [#3]
I thought I read in a roadmap that webSockets is on the todo list. Any news on that?