summaryrefslogtreecommitdiffstats
path: root/source/smbd/srvstr.c
Commit message (Collapse)AuthorAgeFilesLines
* Removed version number from file header.Tim Potter2002-01-301-2/+1
| | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header.
* The big character set handling changeover!Andrew Tridgell2001-07-041-140/+5
| | | | | | | 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.
* Added STR_NOALIGN flags to clistr and srvstr fns. Yes, NT actually doesAndrew Tridgell2001-06-211-17/+21
| | | | | | | | send unaligned unicode strings sometimes! Fixed our handling of the workgroup name tacked on the end of the NT1 negprot response (a unaligned unicode) fixed a couple of places where we should be using the message_end fns instead of pre-calculated buffer lengths
* started converting some of the only-ascii code to use srvstr_*Andrew Tridgell2001-03-311-0/+18
| | | | | | | added srvstr_push_ascii() and srvstr_pull_ascii() as convenience routines to replace the current usage of strncpy() like fns for packet pull/push. We need to do this in *lots* of places in Samba in order to get our codepage handling right
* fixed some compilation errors with IRIX ccAndrew Tridgell2001-03-181-2/+2
|
* don't need srvstr_push_size or srvstr_pull_sizeAndrew Tridgell2001-03-141-40/+0
|
* simpler and more correct srvstr_push()Andrew Tridgell2001-03-131-10/+10
| | | | | | it now uses outbuf not inbuf for the unicode flag, which allows for some server fns to be ascii and means one less parameter in push calls
* added STR_ASCII flag to srvstr_pull()Andrew Tridgell2001-03-131-2/+2
|
* started support for unicode on the wire in smbd. Using a very similarAndrew Tridgell2001-03-101-0/+186
method to what was used in the client I now have session setup and tconx working. Currently this is enabled with SMBD_USE_UNICODE environment variable. Once the code is complete this will become a smb.conf option.