【发布时间】:2013-12-28 18:03:04
【问题描述】:
如何配置 http_listener 来监听我的 IP 地址以便其他计算机 可以在网络上向服务器发送请求吗?
http_listener listener(L"http://localhsot:9000"); // not working
http_listener listener(L"http://0.0.0.0:9000"); // run time error
http_listener listener(L"http://*:9000"); // run time error
我想在本地网络上使用 c++ rest sdk 作为服务器。
【问题讨论】:
标签: c++ rest httplistener casablanca