1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00
samba-mirror/source4/libads
Andrew Tridgell 7d32679e96 r2857: this commit gets rid of smb_ucs2_t, wpstring and fpstring, plus lots of associated functions.
The motivation for this change was to avoid having to convert to/from
ucs2 strings for so many operations. Doing that was slow, used many
static buffers, and was also incorrect as it didn't cope properly with
unicode codepoints above 65536 (which could not be represented
correctly as smb_ucs2_t chars)

The two core functions that allowed this change are next_codepoint()
and push_codepoint(). These functions allow you to correctly walk a
arbitrary multi-byte string a character at a time without converting
the whole string to ucs2.

While doing this cleanup I also fixed several ucs2 string handling
bugs. See the commit for details.

The following code (which counts the number of occuraces of 'c' in a
string) shows how to use the new interface:

size_t count_chars(const char *s, char c)
{
	size_t count = 0;

	while (*s) {
		size_t size;
		codepoint_t c2 = next_codepoint(s, &size);
		if (c2 == c) count++;
		s += size;
	}

	return count;
}
(This used to be commit 814881f0e5)
2007-10-10 12:59:39 -05:00
..
ads_ldap.c r884: convert samba4 to use [u]int32_t instead of [u]int32 2007-10-10 12:56:15 -05:00
ads_status.c r884: convert samba4 to use [u]int32_t instead of [u]int32 2007-10-10 12:56:15 -05:00
ads_struct.c merge: 2004-02-01 11:26:25 +00:00
config.m4 r2318: - remove the --with-ads option 2007-10-10 12:58:43 -05:00
disp_sec.c r962: convert 'unsigned' and 'unsigned int' to uint_t 2007-10-10 12:56:23 -05:00
krb5_setpw.c r960: convert 'unsigned int' to uint_t in the most places 2007-10-10 12:56:23 -05:00
ldap_printer.c r2857: this commit gets rid of smb_ucs2_t, wpstring and fpstring, plus lots of associated functions. 2007-10-10 12:59:39 -05:00
ldap_user.c merge: 2004-02-01 11:26:25 +00:00
ldap_utils.c merge: 2004-02-01 11:26:25 +00:00
ldap.c r2431: got rid of strnequal() in a couple of places 2007-10-10 12:58:52 -05:00
sasl.c r1630: - fixed the replacement timegm() function to work correctly for DST changes 2007-10-10 12:57:45 -05:00
util.c r884: convert samba4 to use [u]int32_t instead of [u]int32 2007-10-10 12:56:15 -05:00