[io] Align io_service_no_ssl.h with io_service.h.

Follow-up to 2ead86ab9d
TEST=ci

Change-Id: I7c64e367a8a169f23ab6078372f31e44a017337e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/349410
Reviewed-by: Brian Quinlan <bquinlan@google.com>
Commit-Queue: Alexander Aprelev <aam@google.com>
This commit is contained in:
Alexander Aprelev 2024-01-31 19:32:09 +00:00 committed by Commit Queue
parent 9d3e923bf3
commit ce728a1037

View file

@ -16,7 +16,7 @@ namespace dart {
namespace bin {
// This list must be kept in sync with the list in sdk/lib/io/io_service.dart
// In this modified version, though, the request 42 for SSLFilter::ProcessFilter
// In this modified version, though, the request 43 for SSLFilter::ProcessFilter
// is removed, for use in contexts in which secure sockets are not enabled.
#define IO_SERVICE_REQUEST_LIST(V) \
V(File, Exists, 0) \
@ -50,17 +50,18 @@ namespace bin {
V(File, Identical, 28) \
V(File, Stat, 29) \
V(File, Lock, 30) \
V(Socket, Lookup, 31) \
V(Socket, ListInterfaces, 32) \
V(Socket, ReverseLookup, 33) \
V(Directory, Create, 34) \
V(Directory, Delete, 35) \
V(Directory, Exists, 36) \
V(Directory, CreateTemp, 37) \
V(Directory, ListStart, 38) \
V(Directory, ListNext, 39) \
V(Directory, ListStop, 40) \
V(Directory, Rename, 41)
V(File, CreatePipe, 31) \
V(Socket, Lookup, 32) \
V(Socket, ListInterfaces, 33) \
V(Socket, ReverseLookup, 34) \
V(Directory, Create, 35) \
V(Directory, Delete, 36) \
V(Directory, Exists, 37) \
V(Directory, CreateTemp, 38) \
V(Directory, ListStart, 39) \
V(Directory, ListNext, 40) \
V(Directory, ListStop, 41) \
V(Directory, Rename, 42)
#define DECLARE_REQUEST(type, method, id) k##type##method##Request = id,