0
我想從C程序或Chrome擴展程序Smart Websocket客戶端連接到node.js + socket.io中寫入的websocket服務器,但我不能。 我只能從其他nodejs應用程序或js + socket.io連接到它。從C程序連接到node.js websocket服務器
的Node.js服務器:
var app = require('http').createServer(handler)
var io = require('socket.io')(app);
var fs = require('fs');
app.listen(3000);
function handler (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200);
res.end(data);
});
}
io.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
C客戶(我用github.com/payden/libwsclient):
#include <time.h>
#include <wsclient/wsclient.h>
#include <errno.h>
int onopen(wsclient *c) {
printf("ad\n");
fprintf(stderr, "onopen called: %d\n", c->sockfd);
libwsclient_send(c, "Hello onopen");
return 0;
}
void initSocketConnection() {
//char *host = "ws://echo.websocket.org";
char *host = "ws://127.0.0.1:3000";
wsclient *client = libwsclient_new(host);
if(!client) {
fprintf(stderr, "Unable to initialize new WS client.\n");
exit(1);
}
printf("connecrionnn \n");
libwsclient_onopen(client, &onopen);
char *msg = "{\"msg\":\"STATION_READY_FOR_ACTION\", \"appKey\":\"secret-key\"}";
libwsclient_send(client, msg);
}
我在做什麼錯?
您是否收到任何錯誤? – nilobarp
沒有錯誤。爲什麼我無法通過Chrome擴展程序連接? C程序連接到ws://echo.websocket.org,到localhost no。 – user7213585