在 Dart 中使用 UNIX 套接字
Using UNIX sockets with Dart
目前我可以使用 TCP 套接字:
final socket = await Socket.connect('127.0.0.1', 8888);
我想使用 UNIX socket。
有没有办法用 Dart 做到这一点?
Dart 2.7.2 支持 UNIX 套接字(参见 this pr or this issue)。
您需要使用 InternetAddress
构造函数并将可选参数 type
设置为 unix
:
import 'dart:io';
...
// With String address
final host = InternetAddress(address, type: InternetAddressType.unix);
// OR with UInt8List raw address
final host = InternetAddress.fromRawAddress(rawAddress, type: InternetAddressType.unix);
final socket = await Socket.connect(host, port);
目前我可以使用 TCP 套接字:
final socket = await Socket.connect('127.0.0.1', 8888);
我想使用 UNIX socket。 有没有办法用 Dart 做到这一点?
Dart 2.7.2 支持 UNIX 套接字(参见 this pr or this issue)。
您需要使用 InternetAddress
构造函数并将可选参数 type
设置为 unix
:
import 'dart:io';
...
// With String address
final host = InternetAddress(address, type: InternetAddressType.unix);
// OR with UInt8List raw address
final host = InternetAddress.fromRawAddress(rawAddress, type: InternetAddressType.unix);
final socket = await Socket.connect(host, port);