summaryrefslogtreecommitdiffstats
path: root/source3/libsmb/clirap.c
Commit message (Collapse)AuthorAgeFilesLines
* More merges from HEAD:Jelmer Vernooij2003-04-161-1/+1
| | | | | | | - Stephan Kulow's changes (fixing warnings in libsmbclient) - VFS modules - Seperating libs (This used to be commit 6e9b7802335428c88ecf4e44a0e2395ac58e96b5)
* pstrcpy_base merges for client-side smbpasswd.Andrew Bartlett2003-03-171-9/+9
| | | | | Andrew Bartlett (This used to be commit 980f2eb7c2efa1a2c83098aebecf0e25a05724cb)
* Change size parameters from signed to unsigned to fix up warnings.Jeremy Allison2003-03-131-19/+19
| | | | | Jeremy. (This used to be commit 33b11d5eb53bdeb9d279d221fd5c01579253e1c7)
* strcpy_base from HEAD and trivial fix for smbclient -LVolker Lendecke2003-03-101-8/+8
| | | | | Volker (This used to be commit 54c99ee1fbaf4541fb3fa10a9b764da1367af6d3)
* merge alt_name patch from headAndrew Tridgell2003-01-141-1/+1
| | | | (This used to be commit 20ebdee36d5351731698bdef6602fc73a45b1651)
* Merge from HEAD - make Samba compile with -Wwrite-strings without additionalAndrew Bartlett2003-01-031-3/+3
| | | | | | | warnings. (Adds a lot of const). Andrew Bartlett (This used to be commit 3a7458f9472432ef12c43008414925fd1ce8ea0c)
* Try to catch up on the code I've put into HEAD that should be in 3.0:Andrew Bartlett2002-10-261-4/+8
| | | | | | | | | | - vorlan's hosts allow with DNS names patch - use x_fileno() in debug.c, not the struct directly. - check for server timeout on password change (was reporting success) - better error/status loggin in both the pam_winbind client and winbindd_pam server code. - (pdb_ldap) don't set the ldap version twice - we do it on every bind anyway. (This used to be commit 9fa1863d8e7788eda83911ca2610754486b33069)
* updated the 3.0 branch from the head branch - ready for alpha18Andrew Tridgell2002-07-151-10/+4
| | | | (This used to be commit 03ac082dcb375b6f3ca3d810a6a6367542bc23ce)
* added cli_qfilename(), used in trans2 torture testAndrew Tridgell2002-02-211-0/+43
| | | | (This used to be commit d37905f20397911e4f74e672ebdee28f1ddf3c2c)
* fixed a bug in qpathinfo client codeAndrew Tridgell2002-02-051-4/+6
| | | | (This used to be commit 22f348a1f9501cc00d46d6c6064f71198558c0ee)
* Removed version number from file header.Tim Potter2002-01-301-2/+1
| | | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header. (This used to be commit 6a58c9bd06d0d7502a24bf5ce5a2faf0a146edfa)
* Always use ASCII strings when changing passwords with RAP.Jeremy Allison2001-12-121-3/+3
| | | | | Jeremy. (This used to be commit d3ac2265b1b83e2e030688ee8e0d43918ce4d203)
* added cli_qpathinfo_alt_name() for fetching the 8.3 name of a fileAndrew Tridgell2001-09-251-0/+65
| | | | (This used to be commit b2eb7feb7f5bafe953fdeb92daaf9e4f08e44983)
* move to SAFE_FREE()Simo Sorce2001-09-171-24/+16
| | | | (This used to be commit 48fc6a6cd52e01b287030fbbf0aa08a6814c5e11)
* A rewrite of the error handling in the libsmb client code. I've separatedTim Potter2001-08-101-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | out the error handling into a bunch of separate functions rather than all being handled in one big function. Fetch error codes from the last received packet: void cli_dos_error(struct cli_state *cli, uint8 *eclass, uint32 *num); uint32 cli_nt_error(struct cli_state *); Convert errors to UNIX errno values: int cli_errno_from_dos(uint8 eclass, uint32 num); int cli_errno_from_nt(uint32 status); int cli_errno(struct cli_state *cli); Detect different kinds of errors: BOOL cli_is_dos_error(struct cli_state *cli); BOOL cli_is_nt_error(struct cli_state *cli); BOOL cli_is_error(struct cli_state *cli); This also means we now support CAP_STATUS32 as we can decode and understand NT errors instead of just DOS errors. Yay! Ported a whole bunch of files in libsmb to use this new API instead of the just the DOS error. (This used to be commit 6dbdb0d813f3c7ab20b38baa1223b0b479aadec9)
* Changed the order of arguments in make_oem_passwd_hash(). All the otherTim Potter2001-08-101-1/+1
| | | | | encryption functions have outputs as the last arguments. (This used to be commit fb60798a771a7a2358d78e5cef97487addf930e7)
* The big character set handling changeover!Andrew Tridgell2001-07-041-16/+10
| | | | | | | | This commit gets rid of all our old codepage handling and replaces it with iconv. All internal strings in Samba are now in "unix" charset, which may be multi-byte. See internals.doc and my posting to samba-technical for a more complete explanation. (This used to be commit debb471267960e56005a741817ebd227ecfc512a)
* Fixed incorrect comment for cli_NetServerEnum()Tim Potter2001-07-031-4/+4
| | | | (This used to be commit 0a505e50a5059930de6583918f25ef84af53de0e)
* Following info from TAKAHASHI Motonobu <monyo@samba.gr.jp>,Jeremy Allison2001-06-211-6/+11
| | | | | | | Samba Users Group Japan, ensure that we don't use dos_to_unix(xx,True), but always use dos_to_unix(xx,False) to prevent overwriting. Jeremy. (This used to be commit 244aec8ea623fec828add3ab09c5003bf32bd5c7)
* New info level tester.Jeremy Allison2001-06-181-0/+43
| | | | | Jeremy. (This used to be commit 9297ae69a7dde878bb4c696f90fbaceb46e18720)
* to use the same macros in the client and server rename the CLISTR_Andrew Tridgell2001-03-101-3/+3
| | | | | macros to STR_ (This used to be commit 95c9e4e0ba8f37f565aaf136f41eb76489441ff7)
* converted the last couple of functions in libsmb to be unicodeAndrew Tridgell2001-02-211-10/+14
| | | | | the whole of libsmb should now do unicode where appropriate (This used to be commit ac7529d2b69826f8214d5632c31778cc87216653)
* reverted richards cli_NetServerEnum changes - they broke lots of thingsAndrew Tridgell2001-02-211-56/+12
| | | | (This used to be commit 86adbb0caf26a8c2fc4d3748b965c0ce79360c1a)
* converted a bunch more fnsAndrew Tridgell2001-02-201-19/+27
| | | | (This used to be commit f6b8d6730452522f77852af0917cb48424d4c8a9)
* pipe opening now works with unicodeAndrew Tridgell2001-02-201-11/+8
| | | | (This used to be commit ba3ce3404e1cd2e9da3ba1708f6fc8a12c085ef2)
* I need a callback arg for cli_NetServerEnum and cli_RNetShareEnum, so I hadRichard Sharpe2001-01-041-8/+44
| | | | | | | to modifiy any routine that calls it to pass NULL and so forth. Should have no impact. It compiles OK. (This used to be commit 7f862e387f935a2125481338eee850afcb8d82ba)
* Ensure browse.dat is written and read in UNIX character set format.Jeremy Allison2000-10-071-0/+1
| | | | | Jeremy. (This used to be commit 279d0ec656b03f9266e38b013f16b69e7571c0d5)
* - added some error checkingAndrew Tridgell2000-04-301-64/+66
| | | | | - removed the VTP hook in smbd (This used to be commit 09355fcd50e6c9c0c81e5f70ab9b7ff88aa897bf)
* split clientgen.c into several partsAndrew Tridgell2000-04-251-0/+591
the next step is splitting out the auth code, to make adding lukes NTLMSSP support easier (This used to be commit 10c5470835b43116ed48b3137c3b9cc867a20989)