我正在尝试将用C和C 编写的桌面应用程序移植到WebAssembly平台,并正在研究是否可能。该应用程序所做的重要一项是通过发送和接收UDP消息来通信。我已经实现了最小的UDP客户端,该客户端仅创建UDP套接字并将数据包发送到服务器(该数据包本地构建,并且可以在同一台计算机上作为单独的可执行文件运行(。套接字,绑定和sendto apis返回没有错误,所有内容看起来都有效,但是服务器端没有接收消息,Wireshark在该端口上没有任何活动。
UDP套接字是在WebAssembly LIBC端口的固定插座,还是在某些Web标准连接(例如WEBRTC(的顶部实现?
客户端代码在下面。我检查了本机构建正常工作。
#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
#define BUFLEN 512
#define NPACK 100
#define PORT 9930
void diep(char *s)
{
perror(s);
exit(1);
}
#define SRV_IP "127.0.0.1"
int main(void)
{
struct sockaddr_in si_other;
int s, i, slen=sizeof(si_other);
char buf[BUFLEN];
if ((s=socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP))==-1)
diep("socket");
memset((char *) &si_other, 0, sizeof(si_other));
si_other.sin_family = AF_INET;
si_other.sin_port = htons(PORT);
if (inet_aton(SRV_IP, &si_other.sin_addr)==0) {
fprintf(stderr, "inet_aton() failedn");
exit(1);
}
for (i=0; i<NPACK; i++) {
printf("Sending packet %dn", i);
sprintf(buf, "This is packet %dn", i);
if (sendto(s, buf, BUFLEN, 0, (struct sockaddr*)&si_other, slen)==-1)
diep("sendto()");
}
close(s);
return 0;
}
我从http://webassembly.org/getting-started/developers-guide/遵循说明进行构建和运行。
事先感谢您的任何帮助或线索!
我发现了如何在WebAssembly上实现UDP插座。实际上,它们是由Websocket模拟的。如果客户端和服务器都是WebAssemblies,它可能会起作用,但是我的服务器是本地构建的。由于WASM不支持动态链接,如果我们可以找到UDP sendTo实现:
// if we're emulating a connection-less dgram socket and don't have
// a cached connection, queue the buffer to send upon connect and
// lie, saying the data was sent now.
if (sock.type === 2) {
if (!dest || dest.socket.readyState !== dest.socket.OPEN) {
// if we're not connected, open a new connection
if (!dest || dest.socket.readyState === dest.socket.CLOSING || dest.socket.readyState === dest.socket.CLOSED) {
dest = SOCKFS.websocket_sock_ops.createPeer(sock, addr, port);
}
dest.dgram_send_queue.push(data);
return length;
}
}
在浏览器中运行的任何内容都不会为您提供本机套接字访问,我怀疑浏览器供应商会强烈反对任何可能违反安全性的访问权限。
也许随着越来越多的本机应用程序移至Web,由于Websembly和类似的计划缩小了性能差异会使它们改变其立场,但是直到那时,任何想要直接插座控制的东西都必须保留一个本机应用程序。