On Fri, Feb 5, 2021 at 2:53 AM Jakub Sitnicki <jakub@xxxxxxxxxxxxxx> wrote: > > On Wed, Feb 03, 2021 at 05:16 AM CET, Cong Wang wrote: > > From: Cong Wang <cong.wang@xxxxxxxxxxxxx> > > > > Add two test cases to ensure redirection between two > > AF_UNIX sockets or two UDP sockets work. > > > > Cc: John Fastabend <john.fastabend@xxxxxxxxx> > > Cc: Daniel Borkmann <daniel@xxxxxxxxxxxxx> > > Cc: Jakub Sitnicki <jakub@xxxxxxxxxxxxxx> > > Cc: Lorenz Bauer <lmb@xxxxxxxxxxxxxx> > > Signed-off-by: Cong Wang <cong.wang@xxxxxxxxxxxxx> > > --- > > If you extract a helper for creating a pair of connected sockets that: > > 1) delegates to socketpair() for AF_UNIX, > 2) emulates socketpair() for INET/DGRAM, > > then tests for INET and UNIX datagram sockets could share code. Good idea. Will do it in the next update. Thanks!