Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-02-02 | Next step disentangling async_req from NTSTATUS | Volker Lendecke | 2 | -12/+12 | |
Now I need to document this :-) | |||||
2009-02-01 | Split up async_req into a generic and a NTSTATUS specific part | Volker Lendecke | 3 | -77/+77 | |
2009-02-01 | Move rpc_pipe_open_internal to srv_pipe_hnd.c | Volker Lendecke | 1 | -37/+0 | |
This is a smbd-only function | |||||
2009-02-01 | cli_get_pipe_name_from_interface does not really need a talloc_ctx | Volker Lendecke | 2 | -21/+22 | |
2009-01-30 | Fix memleaks | Volker Lendecke | 1 | -0/+7 | |
2009-01-30 | pass NULL to prs_give_memory, that is a pointer | Volker Lendecke | 1 | -1/+1 | |
2009-01-30 | Add the "SMBD" rpc transport | Volker Lendecke | 2 | -0/+749 | |
The idea of this is that all client utils like smbpasswd and also for example "net join" do not access our internal databases like passdb and secrets.tdb directly anymore but pass everything throught the well-established RPC interfaces. The way you use this is the following: With rpc_cli_smbd_conn_init() or its async variant you initialize a "struct rpc_cli_smbd_conn". This structure is the link to a freshly forked smbd, ready to be used for RPC services. You should only ever have one such structure in your program. More don't hurt, but are plainly unnecessary. If you want to use the SAMR pipe to change a passwort, you connect to that pipe with rpc_pipe_open_local. Do you normal rpccli_samr calls on that and your locally forked smbd will connect to passdb for you. GD, this might make the distinction between the _l and _r calls in libnetapi mostly unnecessary. At least it is intended to do so... :-) | |||||
2009-01-30 | Make rpc_transport_np_init async | Volker Lendecke | 1 | -32/+121 | |
2009-01-22 | Abstract away the transport in cli_pipe.c | Volker Lendecke | 1 | -304/+173 | |
Sorry for the monster checkin, I could not really find a way to do this in steps. | |||||
2009-01-22 | Add the socket rpc client transport | Volker Lendecke | 1 | -0/+116 | |
2009-01-22 | Add the named pipe rpc client transport | Volker Lendecke | 1 | -0/+329 | |
2009-01-22 | Fix a segfault: rpccli_* expect the reply_pdu to always be initialized | Volker Lendecke | 1 | -0/+5 | |
2009-01-22 | cli_get_pipe_name_from_iface does not need the cli_state | Volker Lendecke | 1 | -3/+2 | |
I leave the TALLOC_CTX in, we might have to allocate it in the future | |||||
2009-01-21 | Memory leaks and other fixes found by Coverity | todd stecher | 1 | -22/+44 | |
2009-01-21 | Allow calling DCE/RPC server implementations directly using | Jelmer Vernooij | 2 | -1/+43 | |
rpc_pipe_client. | |||||
2009-01-18 | Add a macro async_req_setup() | Volker Lendecke | 1 | -60/+14 | |
This streamlines setting up a multi-step async request a bit | |||||
2009-01-18 | Add code to torture the fragmentation code a bit | Volker Lendecke | 1 | -3/+15 | |
2009-01-18 | Remove unused functions | Volker Lendecke | 1 | -401/+0 | |
2009-01-18 | Make rpc_pipe_bind async | Volker Lendecke | 1 | -0/+447 | |
2009-01-18 | Fix an uninitialized variable | Volker Lendecke | 1 | -0/+1 | |
2009-01-18 | Remove sync rpc_api_pipe_req | Volker Lendecke | 1 | -170/+0 | |
2009-01-18 | Add async rpc_api_pipe_req | Volker Lendecke | 1 | -0/+308 | |
2009-01-18 | Add rpc_write_send/recv | Volker Lendecke | 1 | -0/+131 | |
2009-01-18 | Remove unused sync functions | Volker Lendecke | 1 | -196/+0 | |
2009-01-18 | Make rpc_api_pipe async | Volker Lendecke | 1 | -0/+284 | |
2009-01-18 | Rename the async version of get_complete_pdu to get_complete_frag | Volker Lendecke | 1 | -16/+16 | |
2009-01-18 | Move initialization of the reply prs_struct to rpc_api_pipe | Volker Lendecke | 2 | -16/+11 | |
2009-01-18 | Always check the max send sizein rpc_api_pipe, not just with DEVELOPER | Volker Lendecke | 1 | -8/+5 | |
2009-01-18 | Make cli_api_pipe async | Volker Lendecke | 1 | -99/+218 | |
Also move the transport switch to this routine | |||||
2009-01-18 | Remove sync rpc_read wrapper | Volker Lendecke | 1 | -28/+0 | |
2009-01-18 | Make cli_pipe_get_current_pdu async, rename it to get_current_pdu | Volker Lendecke | 1 | -36/+190 | |
2009-01-18 | Make rpc_read async | Volker Lendecke | 1 | -87/+154 | |
2009-01-17 | Slightly simplify the paths after rpc_api_pipe() | Volker Lendecke | 1 | -6/+2 | |
2009-01-14 | Make rpc_read look like a real read call | Volker Lendecke | 1 | -18/+11 | |
It doesn't really need to know about prs_structs | |||||
2009-01-14 | Make rpc_read() match the control flow normally used in Samba | Volker Lendecke | 1 | -12/+19 | |
Replace do { .. } while () with a while () { .. } | |||||
2009-01-14 | Simplify rpc_read a bit | Volker Lendecke | 1 | -16/+11 | |
rpc_read always reads the whole bytes it was asked to read. So it is not really necessary for it to update the current_pdu_offset, for clarity this can better be done in the caller. | |||||
2009-01-14 | Remove an unnecessary size check | Volker Lendecke | 1 | -10/+4 | |
rpc_read is only ever called with at most fraglen-RPC_HEADER_SIZE length | |||||
2009-01-14 | Check the fragment size the server has sent us | Volker Lendecke | 1 | -0/+10 | |
2009-01-14 | Slightly simplify rpc_read: It should not do the resize | Volker Lendecke | 1 | -18/+34 | |
2009-01-14 | Always read with offset 0 from a named pipe | Volker Lendecke | 1 | -6/+5 | |
2009-01-11 | Move cli_api_pipe() to its only user cli_pipe.c | Volker Lendecke | 1 | -0/+26 | |
2009-01-09 | s3-svcctl: remove last traces of hand-marshalled svcctl code. | Günther Deschner | 1 | -25/+0 | |
Guenther | |||||
2009-01-09 | s3-svcctl: remove old marshalling of svcctl_EnumServicesStatusW. | Günther Deschner | 1 | -67/+0 | |
Guenther | |||||
2009-01-06 | s3-lsa: remove all init_lsa* functions. | Günther Deschner | 1 | -70/+0 | |
Guenther | |||||
2009-01-06 | s3-lsa: avoid all init_lsa* functions. | Günther Deschner | 1 | -32/+20 | |
Guenther | |||||
2009-01-06 | s3-srvsvc: remove all init_srvsvc* functions. | Günther Deschner | 1 | -402/+0 | |
Guenther | |||||
2009-01-06 | s3-samr: remove all init_samr_alias* functions. | Günther Deschner | 1 | -28/+0 | |
Guenther | |||||
2009-01-06 | s3-samr: remove all init_samr_group* functions. | Günther Deschner | 1 | -70/+0 | |
Guenther | |||||
2009-01-06 | s3-samr: remove all init_samr_dom* functions. | Günther Deschner | 1 | -135/+0 | |
Guenther | |||||
2009-01-06 | s3-samr: remove init_samr_user* functions. | Günther Deschner | 1 | -343/+0 | |
Guenther |