Embedded Websocket


将websocket移植到ARM系列的开发板上,查资料

http://stackoverflow.com/questions/2194645/how-to-implement-websockets-on-an-embedded-device-server

http://blaisejarrett.com/websockets/

后面的这个是将websocket放在PIC18的板子上的,先按照他的方法做。

配置autobahn的时候,出现

twisted/runner/portmap.c:10:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: Setup script exited with error: command 'gcc' failed with exit status 1

这个错误,解决办法

http://zuantianyang.blog.sohu.com/202714932.html,

即缺少了python-dev,安装即可。

sudo apt-get install python-dev

解决

你可能感兴趣的:(Embedded Websocket)