xsank / webssh

WebSSH is a simple web project which support login linux server with explorer.
http://xsank.github.io/webssh/
MIT License
580 stars 221 forks source link

NetBSD 7系统中不能正常运行 #6

Closed wugefei closed 9 years ago

wugefei commented 9 years ago

我把 EPollIOLoop替换为KQueueIOLoop就可以正常运行了。但是网页上一直显示连接,不能输入命令。

改变的文件:ioloop.py 相关代码位置: @staticmethod def instance(): if not hasattr(IOLoop, "_instance"): if Platform.is_win(): IOLoop._instance = SelectIOLoop() elif Platform.is_mac(): IOLoop._instance = KQueueIOLoop() else: IOLoop._instance = KQueueIOLoop() return IOLoop._instance

xsank commented 9 years ago

image 很惭愧的说,netbsd真不好玩。。。 默认使用SelectIOLoop的话应该是可以的