diff options
| author | Stefan Metzmacher <metze@samba.org> | 2021-02-17 12:29:27 +0100 |
|---|---|---|
| committer | Andreas Schneider <asn@samba.org> | 2021-03-15 08:04:58 +0100 |
| commit | ba970e5d32cceb0750eaa71fb83da3e2eef881d5 (patch) | |
| tree | 6c7b485096014361c8dff27ca42cd1626ed53621 /src/socket_wrapper_noop.c | |
| parent | efd2967e060a3a7ca3de589a23511bb38151ed8b (diff) | |
| download | socket_wrapper-ba970e5d32cceb0750eaa71fb83da3e2eef881d5.tar.gz socket_wrapper-ba970e5d32cceb0750eaa71fb83da3e2eef881d5.tar.xz socket_wrapper-ba970e5d32cceb0750eaa71fb83da3e2eef881d5.zip | |
swrap: export a public socket_wrapper_indicate_no_inet_fd() helper function
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14640
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'src/socket_wrapper_noop.c')
| -rw-r--r-- | src/socket_wrapper_noop.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/socket_wrapper_noop.c b/src/socket_wrapper_noop.c index 45aff8f..aadf350 100644 --- a/src/socket_wrapper_noop.c +++ b/src/socket_wrapper_noop.c @@ -55,3 +55,9 @@ bool socket_wrapper_enabled(void) { return false; } + +void socket_wrapper_indicate_no_inet_fd(int fd) +{ + (void) fd; /* unused */ + return; +} |
