add fds accessor

This commit is contained in:
Vaci Koblizek 2020-10-21 21:18:52 +01:00
parent 730ca1abf5
commit 85a3565dc3

View file

@ -9,6 +9,10 @@ public interface OutgoingRpcMessage {
default void setFds(List<Integer> fds) { default void setFds(List<Integer> fds) {
} }
default List<Integer> getFds() {
return List.of();
}
void send(); void send();
int sizeInWords(); int sizeInWords();