summaryrefslogtreecommitdiffstats
path: root/source3/lib
Commit message (Collapse)AuthorAgeFilesLines
* Remove the char[1024] strings from dynconfig. ReplaceJeremy Allison2007-12-105-24/+24
| | | | | | | them with malloc'ing accessor functions. Should save a lot of static space :-). Jeremy. (This used to be commit 52dc5eaef2106015b3a8b659e818bdb15ad94b05)
* dbwrap_rbtVolker Lendecke2007-12-101-0/+303
| | | | | | | This is meant as a replacement for the internal tdb. To me it seems a bit silly that for in-memory structures we do our own memory management. With this rbt based approach we can make use of the system-supplied malloc. (This used to be commit 54e5d4404619443caed32e2acff8921cdbff9ed1)
* Make the Linux rbtrees compile within SambaVolker Lendecke2007-12-101-16/+41
| | | | (This used to be commit c871fd802f3c0c5ef1f63b2d01a636c885f22b23)
* Add rbtree.[ch] from the Linux kernelVolker Lendecke2007-12-101-0/+397
| | | | | These are copies taken from 94545baded0bfbabdc30a3a4cb48b3db479dd6ef from Linus' kernel tree (This used to be commit 8a3289f913fc0432211b0e9937da1d71d4e18893)
* Add db_tdb_fetchVolker Lendecke2007-12-101-0/+27
| | | | (This used to be commit efa8764c21edfbd09f535900ba37359d72903bf8)
* Add dbwrap bystring service routinesVolker Lendecke2007-12-101-0/+42
| | | | (This used to be commit 1e214b536b0628db299d701839e62a4ac52727c9)
* Many systems don't have sa_len as part of struct sockaddr.Jeremy Allison2007-12-091-1/+1
| | | | | | | Revert 5c347cb46d85d04bbba7c99dca7ff9628f977d84 "Choose a better default for sockaddr length.". Jeremy. (This used to be commit 677ac6adc38b0747f825ee597e0502277a8f74b1)
* Choose a better default for sockaddr length.James Peach2007-12-091-1/+1
| | | | (This used to be commit 5c347cb46d85d04bbba7c99dca7ff9628f977d84)
* Fix connect(2) callers to use correct sockaddr size.James Peach2007-12-094-7/+26
| | | | | | | | | | Some systems (eg Mac OSX 10.5) require the length passed to match the socket address family. This introduces sys_connect() that does the right thing, and replaces all uses oc connect(2) with sys_connect(). Note that there are some LGPL callers that still call connect(2) directly. (This used to be commit e1bfdc17c49da582cdf907e260301ab1946b2ed3)
* Remove next_token - all uses must now be next_token_talloc.Jeremy Allison2007-12-073-98/+22
| | | | | | No more temptations to use static length strings. Jeremy. (This used to be commit ec003f39369910dee852b7cafb883ddaa321c2de)
* We don't need P_GSTRING or P_UGSTRING anymore.Jeremy Allison2007-12-071-1/+1
| | | | | Jeremy. (This used to be commit 78dc75600099b5b3b5a8ecffec747a227ff51d70)
* Don't build rpctorture anymore - not maintained. Just remove.Jeremy Allison2007-12-073-35/+17
| | | | | | | Remove all vestiges of pstring (except for smbctool as noted in previous commit). Jeremy (This used to be commit 4c32a22ac50ada3275d2ffba3c1aa08bee7d1549)
* Remove pstrings completely except for smbctool (what does this do ?).Jeremy Allison2007-12-072-24/+9
| | | | | | Don't build this for now. Jeremy. (This used to be commit 46b67fd82c795d1a34a1efca9e409c0f3fa4f3a2)
* *Really* fix the no password -N opt :-).Jeremy Allison2007-12-062-8/+1
| | | | | Jeremy. (This used to be commit 187d8a94eae87a32432c7c295698517b6ae31523)
* Fix the '-N' option.Jeremy Allison2007-12-061-1/+1
| | | | | Jeremy. (This used to be commit b91b61b54f02f11d80fc25b268faa354fcd1f6e0)
* Get closer to building with smbmount. Move parameter line changesJeremy Allison2007-12-062-80/+131
| | | | | | into lib/util.c Jeremy. (This used to be commit 6ac5d81655927ba8eabea35adaae5adfcbb821c9)
* Make cmdline_auth_info private to lib/popt_common.c. ProvideJeremy Allison2007-12-061-14/+4
| | | | | | accessor functions. Jeremy. (This used to be commit 420195dd3e8b1b6771ab8be8bc974edaafc0cf8f)
* Remove pstrings from client/client.c by doing a large rewrite.Jeremy Allison2007-12-064-82/+136
| | | | | | Mostly compiles.... Jeremy. (This used to be commit c87f3eba9aa52f4ab25d77e2167262bf5c43b1a6)
* Compile fix to the automount support. Patch from GlaDiaC.Gerald (Jerry) Carter2007-12-051-1/+1
| | | | (This used to be commit 487ab6e75e8b8d15f2a37e4ba4129eb2475d4c86)
* Remove some globalsVolker Lendecke2007-12-051-23/+50
| | | | (This used to be commit 31d0a846db08d845e6cdfd85def4ac1c34031e02)
* Make share_info_db_init staticVolker Lendecke2007-12-051-1/+1
| | | | (This used to be commit 111502d3a2901abcff25792bed3c4038a7592410)
* Remove a static, and "signal_received" needs to be sig_atomic_tVolker Lendecke2007-12-051-15/+18
| | | | (This used to be commit 8acd4a202f6b4518c2ce9cdd30f5dfb14b86c07c)
* Ok, down to just the client/*.c code now.Jeremy Allison2007-12-041-5/+0
| | | | | Jeremy. (This used to be commit 7d3959f81a5439800b813ef052382e67424c90cd)
* Remove pstring from automount lookups. Remove premature optimization.Jeremy Allison2007-12-042-72/+60
| | | | | Jeremy. (This used to be commit 6863fe51b5afea234b04b073d3e1b7608d60620e)
* Remove tok pstring from util_str.cJeremy Allison2007-12-041-2/+8
| | | | | | Do we even make rpctorture anymore ? Jeremy. (This used to be commit fecc3cc45af6145fad9a0570e6cae8422bd2443d)
* pull_ascii_pstring is gone.Jeremy Allison2007-12-041-6/+0
| | | | | Jeremy. (This used to be commit 288aacce4b56d159218be311019cb951e5a232fd)
* Allow STR_TERMINATE and -1 src_len for pull_ucs2_base_talloc().Jeremy Allison2007-12-041-1/+7
| | | | | Jeremy. (This used to be commit 063358d87ac9a1d948c8d4b6358e926dd14bb3ac)
* Make strhex_to_str clear on string limits. Remove pstring from web/*.cJeremy Allison2007-12-031-5/+9
| | | | | Jeremy. (This used to be commit f9c8d62389f8cb47837e5360209936176537df13)
* Change tdb_unpack "P" to return a malloc'ed string ratherJeremy Allison2007-12-031-10/+9
| | | | | | | than expect a pstring space to put data into. Fix the (few) callers. Jeremy. (This used to be commit 7722a7d2c63f84b8105aa775b39f0ceedd4ed513)
* Fix wkssvc callers.Günther Deschner2007-12-031-6/+3
| | | | | Guenther (This used to be commit b734cd8aab163d794b969c4e1e721e81a8b4d44c)
* Remove workaround for broken capabilites.h from lib/system.c - now in ↵Michael Adam2007-12-031-18/+0
| | | | | | | lib/replace. Michael (This used to be commit a3fbb5323222334c86c0dc360df8c6a39039bbe6)
* Reformat configure checks for broken capabilities.h.Michael Adam2007-12-031-16/+24
| | | | | Michael (This used to be commit 834a16225a8fb905a8f870a17ba67670e622eccc)
* Move check for broken system capabilites.h headers to lib/replace.Michael Adam2007-12-031-0/+30
| | | | | Michael (This used to be commit 8ec10c4ab1aa890c9f03d34bd872c93ae5c4d84c)
* Add check for ppc statfs.h header to workaround for broken capabilities.h.Michael Adam2007-12-031-1/+3
| | | | | | | Taken from s3:lib/system.c Michael (This used to be commit 07e6cfdc626c2778292e5b0b338a35046c482cf9)
* Fix some bogus uninitialized variable warningsVolker Lendecke2007-12-021-2/+2
| | | | (This used to be commit 48a162b709cc14632fd02c4cd40aa8cfafc53324)
* Fix restart after length count.Jeremy Allison2007-11-301-1/+6
| | | | | Jeremy. (This used to be commit fa8115f32bfd37f75c284ff0f6906dbc2af0f40c)
* Avoid to include net prototypes, just reference user creds.Günther Deschner2007-11-301-7/+16
| | | | | Guenther (This used to be commit 09e01a47164702f67403e61bc478d1cb54f0508e)
* Add header file for NetJoinDomain() and friends.Günther Deschner2007-11-301-0/+29
| | | | | Guenther (This used to be commit 7cea527e8712cde34378ae8b32aad1e4aab0c17b)
* Add NetUnjoinDomain().Günther Deschner2007-11-301-0/+74
| | | | | Guenther (This used to be commit fd9d73ad44b0f0b3656a50a663b60aa26e7f7376)
* Robustness-fixes for NetJoinDomain().Günther Deschner2007-11-301-6/+13
| | | | | Guenther (This used to be commit 2d5236cc37fe015ce9098a0ebe99cdc0ca3537ae)
* Give NetJoinDomain() enough time to finish.Günther Deschner2007-11-301-0/+6
| | | | | Guenther (This used to be commit 7f021b3cb7845c6eb142668f66599886cd92182f)
* domain_name is a ref pointer.Günther Deschner2007-11-301-0/+5
| | | | | Guenther (This used to be commit b350e482b9b211caf08c22c7528b51e47b4a5cce)
* Add NetJoinDomain call.Günther Deschner2007-11-301-0/+84
| | | | | Guenther (This used to be commit 08a5a036ba97d1f4830d73e95b8369aa9e6683e8)
* Add talloc versions of all the next_token() functions.Jeremy Allison2007-11-301-3/+102
| | | | | | Now I can really start removing fixed length strings... Jeremy. (This used to be commit 0ae61e26547e594e94037d4474a008221e5df8cf)
* Fix build warning.Günther Deschner2007-11-301-1/+1
| | | | | Guenther (This used to be commit bf4881d7774681e22f270697c7623bde33c30fe0)
* Fix memleak.Jeremy Allison2007-11-291-0/+1
| | | | | Jeremy. (This used to be commit ccacd170472869391bd1e5bc850b1467492b8fa3)
* Remove the explicit TALLOC_CTX * from cli_struct.Jeremy Allison2007-11-291-3/+3
| | | | | | | Make us very explicit about how long a talloc ctx should last. Jeremy. (This used to be commit ba9e2be2b5a59684e854609f9d82ea1633448c62)
* Add a warning for a potential bug I've run intoVolker Lendecke2007-11-282-0/+6
| | | | (This used to be commit 223352e32372f1b055298cfc6f2770043a845e3d)
* Remove pstrings from everything except srv_spoolss_nt.c.Jeremy Allison2007-11-272-47/+44
| | | | | Jeremy. (This used to be commit 0002a9e96b0ef78316295a6eb94ff29b64e2f988)
* Remove some staticsVolker Lendecke2007-11-272-33/+15
| | | | (This used to be commit 1fab16ffb888cd4ec18e52d9da33976a67a5d104)