summaryrefslogtreecommitdiffstats
path: root/source/lib/netapi
Commit message (Collapse)AuthorAgeFilesLines
* Trying to fix libnetapi examples Makefile.in.Günther Deschner2008-02-291-14/+19
| | | | Guenther
* Only set DEBUGLEVEL to 0 in libnetapi when not set already.Günther Deschner2008-02-281-1/+3
| | | | Guenther
* Let dsgetdcname() return a struct netr_DsRGetDCNameInfo.Günther Deschner2008-02-281-6/+6
| | | | Guenther
* Re-run make idl.Günther Deschner2008-01-311-2/+2
| | | | Guenther
* Eliminate remote tree of dsgetdcname (which will happen in libnetapi then).Günther Deschner2008-01-291-3/+3
| | | | Guenther
* Add LIBNETAPI_LOCAL_SERVER() macro.Günther Deschner2008-01-251-0/+5
| | | | Guenther
* No need to close registry on libnetapi_free() anymore.Günther Deschner2008-01-251-1/+0
| | | | Guenther
* Fix the build w/o ADS.Günther Deschner2008-01-181-0/+4
| | | | Guenther
* Add header for NetGetJoinableOUs to libnetapi.Günther Deschner2008-01-181-0/+11
| | | | Guenther
* Add NetGetJoinableOUs() to libnetapi (incl. example).Günther Deschner2008-01-183-3/+309
| | | | Guenther
* Cosmetics and error string reporting for libnetapi.Günther Deschner2008-01-183-16/+114
| | | | Guenther
* Add some more debugging into netdomjoin-gui.Günther Deschner2008-01-181-4/+9
| | | | Guenther
* Fix local hostname detection in netdomjoin-gui.Günther Deschner2008-01-181-10/+27
| | | | Guenther
* Improve libnetapi_set_error_string().Günther Deschner2008-01-182-7/+39
| | | | Guenther
* Use new pidl-generated netlogon client calls in NetApi GetDcName().Günther Deschner2008-01-172-38/+8
| | | | Guenther
* Use lp_config_backend_is_registry() instead of lp_include_registry_globals().Michael Adam2008-01-161-1/+1
| | | | Michael
* Introduce a libnet_conf context created by libnet_conf_open().Michael Adam2008-01-131-1/+17
| | | | | | | | | | | | | | | | | | | The libnet_conf_ctx stores the information necessary to interoperate with the configuration. It is created by calling libnet_conf_open() and destroyed by calling libnet_conf_close(). The context is passed to all the libnet_conf functions. It currently stores the token to access the registry. Later, it could store more data, e.g. the server to connect to, credentials, and so on. For support of other backends than registry or support of remote configuration, only the open function will have to be changed. In net_conf, the calls to the actual net_conf functions is wrapped into a function that calls libnet_conf_open()/_close(). Thus an individual variant of net_conf_runfunction2() and functable2 is used to cope with functions being called by the wrapper with the additional libnet_conf_ctx argument. Michael
* As long as DsGetDcName is not part of libnetapi, lowercase the fn name.Günther Deschner2008-01-111-2/+2
| | | | Guenther
* Fix libnetapi error string callers.Günther Deschner2008-01-113-7/+7
| | | | Guenther
* Include some basic headers in netapi.h.Günther Deschner2008-01-111-0/+10
| | | | Guenther
* Refactor libnetapi error string functions a bit.Günther Deschner2008-01-112-6/+20
| | | | Guenther
* Correctly free buffers in netdomjoin-gui.Günther Deschner2008-01-081-1/+8
| | | | Guenther
* Make name_buffer in NetGetJoinInformation() talloced.Günther Deschner2008-01-081-2/+2
| | | | Guenther
* Add NetApiBufferFree() to libnetapi.Günther Deschner2008-01-082-0/+19
| | | | Guenther
* Fix crash bug when strequal is used too late in libnetapi_free.Günther Deschner2008-01-081-5/+8
| | | | Guenther
* Enable talloc reporting in libnetapi if DEVELOPER compiled.Günther Deschner2008-01-071-0/+3
| | | | Guenther
* In libnetapi example, use libnetapi_get_error_string().Günther Deschner2008-01-071-1/+6
| | | | Guenther
* In the local path of NetJoinDomain, try to get error string from libnetjoin.Günther Deschner2008-01-071-0/+3
| | | | Guenther
* Add libnetapi_set_error_string and libnetapi_get_error_string.Günther Deschner2008-01-072-4/+33
| | | | Guenther
* Add krb5 cc env to libnetapi_ctx.Günther Deschner2008-01-071-0/+4
| | | | Guenther
* Let libnetapi use it's own krb5 cred cache in memory if necessary.Günther Deschner2008-01-071-0/+33
| | | | Guenther
* Rearrange order of libnet join context init.Günther Deschner2008-01-071-3/+3
| | | | Guenther
* Free libnet_JoinCtx after joining.Günther Deschner2008-01-071-1/+4
| | | | Guenther
* Close registry in libnetapi_free().Günther Deschner2008-01-071-0/+1
| | | | Guenther
* Add NET_API_STATUS_SUCCESS define.Günther Deschner2008-01-072-10/+14
| | | | Guenther
* Fix two memleaks in libnetapi.Günther Deschner2008-01-071-1/+4
| | | | Guenther
* Failure while unjoining a domain is non-critical.Günther Deschner2008-01-071-8/+2
| | | | | | Just continue joining to the workgroup in that case. Guenther
* Do not pass emtpy wkssvc_PasswordBuffers to rpc functions.Günther Deschner2008-01-041-8/+4
| | | | Guenther
* Rename server_name to dc_name in libnet join structures.Günther Deschner2008-01-041-6/+8
| | | | Guenther
* In libnet_join finally separate the admin from the machine pwd entirely.Günther Deschner2008-01-041-5/+5
| | | | Guenther
* Add debug switch to netdomjoin.Günther Deschner2008-01-041-2/+10
| | | | Guenther
* Minor cosmetic cleanup for netdomjoin-gui.Günther Deschner2008-01-042-18/+37
| | | | Guenther
* Fix some error strings in netdomjoin-gui.Günther Deschner2008-01-041-12/+31
| | | | Guenther
* Minor libnetapi join cosmetic cleanup.Günther Deschner2008-01-031-3/+3
| | | | Guenther
* Rename libnet_smbconf_set_global_param() to libnet_conf_set_global_parameter().Michael Adam2008-01-031-2/+2
| | | | | | Now all functions are converted to the consistent naming scheme. Michael
* Let DsGetDCName figure out whether domain_name is a flat_name when unjoining.Günther Deschner2008-01-031-1/+0
| | | | Guenther
* Fix the buildVolker Lendecke2007-12-251-2/+1
|
* Correct netapi header filename. Thanks Jeremy.Günther Deschner2007-12-223-3/+3
| | | | Guenther
* Move gtk app to the correct location. Thanks obnox!Günther Deschner2007-12-211-0/+0
| | | | Guenther
* Move libnetapi examples into subdirs.Günther Deschner2007-12-216-7/+17
| | | | Guenther