Age | Commit message (Expand) | Author | Files | Lines |
2007-10-10 | r4952: removed a bogus talloc_steal() that was trying to cope with the | Andrew Tridgell | 1 | -1/+0 |
2007-10-10 | r4951: some of the code dealing with libcli was getting too complex trying to | Andrew Tridgell | 6 | -24/+32 |
2007-10-10 | r4950: removed some excessive debugging messages | Andrew Tridgell | 1 | -8/+0 |
2007-10-10 | r4949: First version of a fetchfile composite function which connects to a se... | Volker Lendecke | 3 | -1/+208 |
2007-10-10 | r4944: every event_add_*() caller was having to call talloc_steal() to take | Andrew Tridgell | 4 | -11/+6 |
2007-10-10 | r4943: Smplified the events handling code a lot. The first source of | Andrew Tridgell | 4 | -33/+7 |
2007-10-10 | r4938: allow the caller to supply an existing event_context if they want to | Andrew Tridgell | 3 | -7/+14 |
2007-10-10 | r4937: simplify the connect code in the same way | Andrew Tridgell | 1 | -15/+12 |
2007-10-10 | r4936: moved to a convention where the completion function is only called in | Andrew Tridgell | 2 | -24/+18 |
2007-10-10 | r4935: fixed a bug where "c->status = xxx_handler(x);" could write to c after | Andrew Tridgell | 3 | -15/+22 |
2007-10-10 | r4927: parse the NBT session request in the smb server. This gets rid of that | Andrew Tridgell | 1 | -1/+12 |
2007-10-10 | r4924: continue the effort to simplify and generalise the composite | Andrew Tridgell | 5 | -22/+22 |
2007-10-10 | r4922: fixed an infinite loop in the name resolve code when handling a method | Andrew Tridgell | 1 | -3/+1 |
2007-10-10 | r4919: if a caller doesn't provide an event context to the resolver library, | Andrew Tridgell | 1 | -1/+6 |
2007-10-10 | r4916: added "host" name resolution using fork() per gethostbyname() | Andrew Tridgell | 3 | -17/+270 |
2007-10-10 | r4915: free temp context _before_ the async callback, as the async callback m... | Andrew Tridgell | 1 | -1/+1 |
2007-10-10 | r4911: make sure we fill in the transport called name on port 445 as well | Andrew Tridgell | 1 | -6/+9 |
2007-10-10 | r4909: fixed name_trn_id generation (thanks to metze for spotting the bug!) | Andrew Tridgell | 1 | -1/+3 |
2007-10-10 | r4901: a bit more info on nbt packets under high debug level | Andrew Tridgell | 1 | -2/+5 |
2007-10-10 | r4898: - removed the unused wins_srv_*() code | Andrew Tridgell | 6 | -106/+359 |
2007-10-10 | r4896: make sure the event context doesn't go away while waiting for event co... | Andrew Tridgell | 1 | -1/+1 |
2007-10-10 | r4894: namecache.c is not used any more either | Andrew Tridgell | 1 | -247/+0 |
2007-10-10 | r4893: Move to using secrets.ldb for the Kerberos verify, instead of | Andrew Bartlett | 1 | -12/+33 |
2007-10-10 | r4891: - added a generic resolve_name() async interface in libcli/resolve/, | Andrew Tridgell | 16 | -2730/+414 |
2007-10-10 | r4890: Try to cope with mechanism mismatch in the client speaks first version | Andrew Bartlett | 1 | -7/+98 |
2007-10-10 | r4886: fixed two places where we process the send side of a socket after the | Andrew Tridgell | 1 | -0/+1 |
2007-10-10 | r4885: added a new NBT client library. Features include: | Andrew Tridgell | 5 | -1/+1036 |
2007-10-10 | r4811: now that the event context is at the socket level, the event cleanup | Andrew Tridgell | 2 | -1/+13 |
2007-10-10 | r4810: fixed anonymous connections with smbclient. Thanks to jbm for pointing... | Andrew Tridgell | 1 | -2/+6 |
2007-10-10 | r4795: stronget type checking in composite connect function | Andrew Tridgell | 1 | -2/+4 |
2007-10-10 | r4791: used the new talloc type safety macros to make the "void *private" | Andrew Tridgell | 5 | -25/+25 |
2007-10-10 | r4783: got rid of another void* in the composite code. This brings us down to | Andrew Tridgell | 5 | -114/+88 |
2007-10-10 | r4782: volker quite rightly pointed out that there is too much of a | Andrew Tridgell | 5 | -130/+131 |
2007-10-10 | r4778: I forgot to set the session key for the spnego path. Fixed. | Andrew Tridgell | 1 | -0/+1 |
2007-10-10 | r4777: added a smb_composite_sesssetup() async composite function. This | Andrew Tridgell | 9 | -576/+473 |
2007-10-10 | r4769: added a smb_composite_connect() function that provides a simple async | Andrew Tridgell | 5 | -4/+476 |
2007-10-10 | r4767: handle the different NBT session request refusals, and map them to | Andrew Tridgell | 1 | -10/+41 |
2007-10-10 | r4765: simplify the async socket code to always go via the event handler | Andrew Tridgell | 1 | -18/+9 |
2007-10-10 | r4758: - added async support to the session request code | Andrew Tridgell | 5 | -45/+105 |
2007-10-10 | r4757: added the ability of the clisocket level of libcli to handle async | Andrew Tridgell | 5 | -91/+221 |
2007-10-10 | r4755: the recent change in the definition of lp_passwordserver() breaks this | Andrew Tridgell | 2 | -204/+0 |
2007-10-10 | r4754: tidied up the composite function infrastructure to make it easier to | Andrew Tridgell | 4 | -44/+67 |
2007-10-10 | r4726: - use the name tcon and tid instead of conn and cnum | Stefan Metzmacher | 3 | -5/+5 |
2007-10-10 | r4710: added a smb_composite_savefile() function, and expanded the test suite... | Andrew Tridgell | 5 | -12/+350 |
2007-10-10 | r4701: remove debugs | Stefan Metzmacher | 1 | -2/+0 |
2007-10-10 | r4700: first attempt at a composite async function, smb_composite_loadfile(), | Andrew Tridgell | 4 | -1/+366 |
2007-10-10 | r4692: Make the client SPNEGO code bail out in a couple more cases. | Andrew Bartlett | 1 | -1/+4 |
2007-10-10 | r4682: A LDB-based secrets implementation in Samba4. | Andrew Bartlett | 1 | -21/+22 |
2007-10-10 | r4658: (grr, commited wrong file last time). | Andrew Bartlett | 1 | -1/+1 |
2007-10-10 | r4650: - make more use of bitmap and enum's | Stefan Metzmacher | 2 | -2/+4 |