summaryrefslogtreecommitdiff
path: root/source3/include/vagent.h
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-12-05 00:13:17 +0000
committerLuke Leighton <lkcl@samba.org>1999-12-05 00:13:17 +0000
commit854f35e20fa4748312e4b0fbae6bb38342ab0389 (patch)
treef3fd0a7de90630a4442e54f6214966dd923a3003 /source3/include/vagent.h
parentddda7722a673cefc89a55133f99c07dd153b1f19 (diff)
downloadsamba-854f35e20fa4748312e4b0fbae6bb38342ab0389.tar.gz
samba-854f35e20fa4748312e4b0fbae6bb38342ab0389.tar.bz2
samba-854f35e20fa4748312e4b0fbae6bb38342ab0389.zip
created create_pipe_socket() function.
(This used to be commit a3af3b4312144943413894b18b5845b56474ebb5)
Diffstat (limited to 'source3/include/vagent.h')
-rw-r--r--source3/include/vagent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/vagent.h b/source3/include/vagent.h
index 19bb976635..c8b85181e4 100644
--- a/source3/include/vagent.h
+++ b/source3/include/vagent.h
@@ -36,14 +36,14 @@ struct sock_redir
struct vagent_ops
{
void (*free_sock)(void* sock);
- int (*get_agent_sock)(void* id);
+ int (*get_agent_sock)(char* id);
BOOL (*process_cli_sock)(struct sock_redir **socks, uint32 num_socks,
struct sock_redir *sock);
BOOL (*process_srv_sock)(struct sock_redir **socks, uint32 num_socks,
int fd);
- void* id;
+ char* id;
struct sock_redir **socks;
uint32 num_socks;
};