-
-
Notifications
You must be signed in to change notification settings - Fork 495
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is not needed for this, but it is the only transport that does not have it, and adding it simplifies logic in the common code.
- Loading branch information
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// | ||
// Copyright 2023 Staysail Systems, Inc. <[email protected]> | ||
// Copyright 2024 Staysail Systems, Inc. <[email protected]> | ||
// Copyright 2018 Capitar IT Group BV <[email protected]> | ||
// Copyright 2018 Devolutions <[email protected]> | ||
// | ||
|
@@ -114,6 +114,12 @@ inproc_pipe_init(void *arg, nni_pipe *p) | |
return (0); | ||
} | ||
|
||
static void | ||
inproc_pipe_stop(void *arg) | ||
{ | ||
NNI_ARG_UNUSED(arg); | ||
} | ||
|
||
static void | ||
inproc_pipe_fini(void *arg) | ||
{ | ||
|
@@ -620,6 +626,7 @@ static nni_sp_pipe_ops inproc_pipe_ops = { | |
.p_send = inproc_pipe_send, | ||
.p_recv = inproc_pipe_recv, | ||
.p_close = inproc_pipe_close, | ||
.p_stop = inproc_pipe_stop, | ||
.p_peer = inproc_pipe_peer, | ||
.p_getopt = inproc_pipe_getopt, | ||
}; | ||
|