在LispWorks中使用easy-ssl-acceptor

时间:2018-10-03 13:35:12

标签: ssl lisp common-lisp hunchentoot lispworks

我想在LispWorks中使用Hunchentoot的easy-ssl-acceptor。但是,我看到此类接收器具有以下功能语法#-:hunchentoot-no-ssl

此功能确实存在于我的*features*列表中,因此我不能使用此类。这里有什么问题?为什么将:hunchentoot-no-ssl添加到我的*features*中?如何解决此问题,以便可以使用easy-ssl-acceptor类?

PS:我在使用LispWorks 7.1的macOS 10.13上。

1 个答案:

答案 0 :(得分:0)

尚不清楚此功能如何进入您的*features*,但是在这种情况下,最简单的操作是手动将其从*features*中删除,然后强制重建Hunchentoot:

* (alexandria:removef *features* :hunchentoot-no-ssl)
* (asdf:load-system :hunchentoot :force t)