Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-04-08 | Convert rpc_transport_smbd_init to tevent_req | Volker Lendecke | 1 | -34/+32 | |
2009-04-08 | Convert rpc_cli_smbd_conn_init to tevent_req | Volker Lendecke | 1 | -37/+34 | |
2009-04-08 | Convert get_anon_ipc to tevent_req | Volker Lendecke | 1 | -40/+35 | |
2009-04-08 | Convert rpc_transport_np_init to tevent_req | Volker Lendecke | 1 | -7/+7 | |
2009-04-06 | Convert cli_tcon_andx to tevent_req | Volker Lendecke | 1 | -13/+10 | |
2009-04-06 | Convert cli_negprot to tevent_req | Volker Lendecke | 1 | -7/+7 | |
2009-04-06 | Convert cli_session_setup_guest to tevent_req | Volker Lendecke | 1 | -12/+13 | |
2009-04-05 | Keep the forked-smbd stdout reader around longer | Volker Lendecke | 1 | -3/+8 | |
2009-04-05 | Ensure 0-termination for the forked-smbd debug output | Volker Lendecke | 1 | -0/+1 | |
2009-04-05 | Pass the current debuglevel down to the forked smbd | Volker Lendecke | 1 | -1/+2 | |
2009-03-24 | Convert rpc_cli_transport->write to tevent_req | Volker Lendecke | 1 | -24/+22 | |
2009-03-24 | Convert rpc_cli_transport->read to tevent_req | Volker Lendecke | 1 | -25/+22 | |
2009-02-02 | Next step disentangling async_req from NTSTATUS | Volker Lendecke | 1 | -2/+2 | |
Now I need to document this :-) | |||||
2009-02-01 | Split up async_req into a generic and a NTSTATUS specific part | Volker Lendecke | 1 | -15/+15 | |
2009-01-30 | Add the "SMBD" rpc transport | Volker Lendecke | 1 | -0/+694 | |
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... :-) |