Hi, I just want know all the small problems that got between you and your final solution when you were new to Erlang.
For example, here are the first speedbumps I had:
- Use controlling_process(Socket, Pid) if you spawn off in multiple threads. Right packet to the right thread.
- You going to start talking to another server? Remember to net_adm:ping('car@bsd-server'). in the shell. Else no communication will get through.
- Timer:sleep(10), if you want to do nothing. Always useful when debugging.