summaryrefslogtreecommitdiff
path: root/source4/ntvfs/ipc/ipc.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-01-28 20:08:03 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:51:35 -0500
commit713b296441ec8b1447a0bc451720a8b84fd7e1fc (patch)
treeed8823757cf73874802ad94e20666e79e113a654 /source4/ntvfs/ipc/ipc.h
parentad6303f82fa862111c239b32b39f299e563a0802 (diff)
downloadsamba-713b296441ec8b1447a0bc451720a8b84fd7e1fc.tar.gz
samba-713b296441ec8b1447a0bc451720a8b84fd7e1fc.tar.bz2
samba-713b296441ec8b1447a0bc451720a8b84fd7e1fc.zip
r13210: Revert my named pipes patch until it passes not just 'make quicktest' but
also 'make test' (This used to be commit e3d0676aee84e96e5c87bed4cd0cde75a4191953)
Diffstat (limited to 'source4/ntvfs/ipc/ipc.h')
-rw-r--r--source4/ntvfs/ipc/ipc.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/source4/ntvfs/ipc/ipc.h b/source4/ntvfs/ipc/ipc.h
index 53818a5845..e69de29bb2 100644
--- a/source4/ntvfs/ipc/ipc.h
+++ b/source4/ntvfs/ipc/ipc.h
@@ -1,30 +0,0 @@
-/*
- Unix SMB/CIFS implementation.
- NTVFS IPC$ Named Pipes
- Copyright (C) Jelmer Vernooij 2005
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-*/
-
-struct named_pipe_ops {
- NTSTATUS (*open)(void *context_data,
- const char *path,
- struct auth_session_info *session,
- struct stream_connection *stream,
- TALLOC_CTX *ctx, void **private_data);
- NTSTATUS (*trans)(void *private_data, DATA_BLOB *in, DATA_BLOB *out);
- NTSTATUS (*write)(void *private_data, DATA_BLOB *out);
- NTSTATUS (*read)(void *private_data, DATA_BLOB *in);
-};