diff options
author | Günther Deschner <gd@samba.org> | 2011-02-26 00:28:38 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-02 22:17:52 +0100 |
commit | a460fe8151d6afb29dde623971cde95ef41f6bd8 (patch) | |
tree | ceede626544617847de2c4ee1390dd6872675e75 /source3/include | |
parent | 93db9489fd778bd96e6434f4bd70e90b47c01b06 (diff) | |
download | samba-a460fe8151d6afb29dde623971cde95ef41f6bd8.tar.gz samba-a460fe8151d6afb29dde623971cde95ef41f6bd8.tar.bz2 samba-a460fe8151d6afb29dde623971cde95ef41f6bd8.zip |
s3-proto: fix some inline comments.
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 6cf0ebe463..e866dedc60 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3955,13 +3955,16 @@ bool lookup_wellknown_name(TALLOC_CTX *mem_ctx, const char *name, void set_profile_level(int level, struct server_id src); bool profile_setup(struct messaging_context *msg_ctx, bool rdonly); -/* The following definitions come from rpc_client/cli_pipe.c */ +/* The following definitions come from librpc/rpc/rpc_common.c */ + bool smb_register_ndr_interface(const struct ndr_interface_table *interface); const struct ndr_interface_table *get_iface_from_syntax( const struct ndr_syntax_id *syntax); const char *get_pipe_name_from_syntax(TALLOC_CTX *mem_ctx, const struct ndr_syntax_id *syntax); +/* The following definitions come from rpc_server/rpc_ncacn_np.c */ + struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx, const struct ndr_syntax_id *syntax, struct client_address *client_id, @@ -3985,6 +3988,9 @@ NTSTATUS rpc_pipe_open_interface(TALLOC_CTX *mem_ctx, struct client_address *client_id, struct messaging_context *msg_ctx, struct rpc_pipe_client **cli_pipe); + +/* The following definitions come from rpc_client/cli_pipe_schannel.c */ + NTSTATUS get_schannel_session_key(struct cli_state *cli, const char *domain, uint32 *pneg_flags, @@ -4002,7 +4008,6 @@ NTSTATUS rpc_transport_np_init_recv(struct tevent_req *req, NTSTATUS rpc_transport_np_init(TALLOC_CTX *mem_ctx, struct cli_state *cli, const struct ndr_syntax_id *abstract_syntax, struct rpc_cli_transport **presult); -struct cli_state *rpc_pipe_np_smb_conn(struct rpc_pipe_client *p); /* The following definitions come from rpc_client/rpc_transport_sock.c */ @@ -4010,9 +4015,11 @@ NTSTATUS rpc_transport_sock_init(TALLOC_CTX *mem_ctx, int fd, struct rpc_cli_transport **presult); /* The following definitions come from rpc_client/rpc_transport_tstream.c */ + NTSTATUS rpc_transport_tstream_init(TALLOC_CTX *mem_ctx, struct tstream_context **stream, struct rpc_cli_transport **presult); +struct cli_state *rpc_pipe_np_smb_conn(struct rpc_pipe_client *p); /* The following definitions come from rpc_server/srv_eventlog_nt.c */ @@ -5369,7 +5376,7 @@ void *avahi_start_register(TALLOC_CTX *mem_ctx, struct tevent_context *ev, void msg_idmap_register_msgs(struct messaging_context *ctx); -/* Misc protos */ +/* The following definitions come from lib/fncall.c */ struct fncall_context *fncall_context_init(TALLOC_CTX *mem_ctx, int max_threads); @@ -5379,6 +5386,8 @@ struct tevent_req *fncall_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, void *private_data); int fncall_recv(struct tevent_req *req, int *perr); +/* The following definitions come from libsmb/smbsock_connect.c */ + struct tevent_req *smbsock_connect_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, const struct sockaddr_storage *addr, |