summaryrefslogtreecommitdiffstats
path: root/source3/lib/netapi
Commit message (Collapse)AuthorAgeFilesLines
...
* Improve libnetapi_set_error_string().Günther Deschner2008-01-182-7/+39
| | | | | Guenther (This used to be commit 96f645553ae5c75aabfe588e1a67f3d4bfacb5cb)
* Use new pidl-generated netlogon client calls in NetApi GetDcName().Günther Deschner2008-01-172-38/+8
| | | | | Guenther (This used to be commit 733e07a06ce3c903ff5837df6a5119f6d6e3eccb)
* Use lp_config_backend_is_registry() instead of lp_include_registry_globals().Michael Adam2008-01-161-1/+1
| | | | | Michael (This used to be commit c5a7d421c512a6221b0300549d7b5de0368d252e)
* 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 (This used to be commit c2a9346faa26e79af5948197a1b322e545f0ed09)
* As long as DsGetDcName is not part of libnetapi, lowercase the fn name.Günther Deschner2008-01-111-2/+2
| | | | | Guenther (This used to be commit 19a980f52044a170618629e5b0484c1f6b586e5f)
* Fix libnetapi error string callers.Günther Deschner2008-01-113-7/+7
| | | | | Guenther (This used to be commit 1ad7a0a361edfa5ac738f011db1d6a9db256ac2c)
* Include some basic headers in netapi.h.Günther Deschner2008-01-111-0/+10
| | | | | Guenther (This used to be commit 23b92a6fa57858c8a23c737a9cd00c076ef5dadd)
* Refactor libnetapi error string functions a bit.Günther Deschner2008-01-112-6/+20
| | | | | Guenther (This used to be commit 3b450a8bcc97b6d03c4b7b9373a3a382c0fcea30)
* Correctly free buffers in netdomjoin-gui.Günther Deschner2008-01-081-1/+8
| | | | | Guenther (This used to be commit 04d78d4d9a8cffe44c927036038aef1d6d6b44b2)
* Make name_buffer in NetGetJoinInformation() talloced.Günther Deschner2008-01-081-2/+2
| | | | | Guenther (This used to be commit 421905fb608df6736944ac21ac67abee24991521)
* Add NetApiBufferFree() to libnetapi.Günther Deschner2008-01-082-0/+19
| | | | | Guenther (This used to be commit c49196954d38f0c2851abbfe25086cd6fe660a2e)
* Fix crash bug when strequal is used too late in libnetapi_free.Günther Deschner2008-01-081-5/+8
| | | | | Guenther (This used to be commit ba2b8a310e1d6f78116350e24c17ae4db08b9bed)
* Enable talloc reporting in libnetapi if DEVELOPER compiled.Günther Deschner2008-01-071-0/+3
| | | | | Guenther (This used to be commit 01e9151546a83e0c772a144efa85437ca0c8a307)
* In libnetapi example, use libnetapi_get_error_string().Günther Deschner2008-01-071-1/+6
| | | | | Guenther (This used to be commit b624db92d61809a44881abbdd09dfa3a74ff7a88)
* In the local path of NetJoinDomain, try to get error string from libnetjoin.Günther Deschner2008-01-071-0/+3
| | | | | Guenther (This used to be commit 0f0f0e13022da584b77e850fec2cef6169e1ac28)
* Add libnetapi_set_error_string and libnetapi_get_error_string.Günther Deschner2008-01-072-4/+33
| | | | | Guenther (This used to be commit f8806bad8134d544229c426f58bee143ba752cf8)
* Add krb5 cc env to libnetapi_ctx.Günther Deschner2008-01-071-0/+4
| | | | | Guenther (This used to be commit df2b078fa1658bdbff1280f7fe0b062d9eabd60c)
* Let libnetapi use it's own krb5 cred cache in memory if necessary.Günther Deschner2008-01-071-0/+33
| | | | | Guenther (This used to be commit 863fb30038e384585502f0154a742481594b99d0)
* Rearrange order of libnet join context init.Günther Deschner2008-01-071-3/+3
| | | | | Guenther (This used to be commit 89669c66f27fb47c9769d1058e29bff83f862752)
* Free libnet_JoinCtx after joining.Günther Deschner2008-01-071-1/+4
| | | | | Guenther (This used to be commit 5abae9ef15fa9884c5c4a0e256274f70f6ecd779)
* Close registry in libnetapi_free().Günther Deschner2008-01-071-0/+1
| | | | | Guenther (This used to be commit e7258a4408e40686ff090d0f8e120ce78acbd097)
* Add NET_API_STATUS_SUCCESS define.Günther Deschner2008-01-072-10/+14
| | | | | Guenther (This used to be commit a72ad63163a8c642ea762087a739e6d63c37647a)
* Fix two memleaks in libnetapi.Günther Deschner2008-01-071-1/+4
| | | | | Guenther (This used to be commit d73bde99e8518607bb78b5625ce5fb1991d8e402)
* 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 (This used to be commit bf9ce2a928e3136d3bfe368f75d5b99273c5b04f)
* Do not pass emtpy wkssvc_PasswordBuffers to rpc functions.Günther Deschner2008-01-041-8/+4
| | | | | Guenther (This used to be commit fe75e5ccdfc2609380367e59215637b0de1ef241)
* Rename server_name to dc_name in libnet join structures.Günther Deschner2008-01-041-6/+8
| | | | | Guenther (This used to be commit ff5e15b1ba0d5c39ceef9f9995c107e510162564)
* In libnet_join finally separate the admin from the machine pwd entirely.Günther Deschner2008-01-041-5/+5
| | | | | Guenther (This used to be commit d88bb94f0ef00ddbb48498797bd11448e0d74645)
* Add debug switch to netdomjoin.Günther Deschner2008-01-041-2/+10
| | | | | Guenther (This used to be commit 2b221708c07967bccd68e8c7983791b4628405bb)
* Minor cosmetic cleanup for netdomjoin-gui.Günther Deschner2008-01-042-18/+37
| | | | | Guenther (This used to be commit 02e3887f3962b469c965110b6141a6655f2347af)
* Fix some error strings in netdomjoin-gui.Günther Deschner2008-01-041-12/+31
| | | | | Guenther (This used to be commit aaea8f1ed744e9662f92a3840d86ad1aff943d18)
* Minor libnetapi join cosmetic cleanup.Günther Deschner2008-01-031-3/+3
| | | | | Guenther (This used to be commit 4deef80bed374af5032c0f3081d2ee3c70be99df)
* 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 (This used to be commit a559533c0c8a80f3f4078bbc2675de395359485f)
* Let DsGetDCName figure out whether domain_name is a flat_name when unjoining.Günther Deschner2008-01-031-1/+0
| | | | | Guenther (This used to be commit 75165ba4e7acafaca42f6afd1fb8b56e00bcbed7)
* Fix the buildVolker Lendecke2007-12-251-2/+1
| | | | (This used to be commit 72dc71710813ea9f1d8864c4401fef25a25577bd)
* Correct netapi header filename. Thanks Jeremy.Günther Deschner2007-12-223-3/+3
| | | | | Guenther (This used to be commit f192737ec8140aa6570bfb49a165b31890d63b16)
* Move gtk app to the correct location. Thanks obnox!Günther Deschner2007-12-211-0/+0
| | | | | Guenther (This used to be commit 740a2b080db56d504c4edd58bf41d72edb3d32ee)
* Move libnetapi examples into subdirs.Günther Deschner2007-12-216-7/+17
| | | | | Guenther (This used to be commit 0c3de6f3458419e57daaa71f1dad679897388f5a)
* Add netdomjoin-gui (my first gui application), another libnetapi user.Günther Deschner2007-12-214-2/+1357
| | | | | Guenther (This used to be commit cf57ade5ec4a808eccb19a7723d753742fb71ca9)
* Add netdomjoin cmd line tool (another libnetapi example).Günther Deschner2007-12-212-1/+113
| | | | | Guenther (This used to be commit c502686f09713a7cf3786c254be6515a7aa23555)
* Add getdc.c, a libnetapi example (incl. Makefile).Günther Deschner2007-12-212-0/+91
| | | | | Guenther (This used to be commit faedc78fc78527ee3bf05e1177ea43653aea67b2)
* Add basic remote NetGetDCName and NetGetAnyDCName versions to libnetapi.Günther Deschner2007-12-212-0/+252
| | | | | Guenther (This used to be commit 5bc49546a32abb4524133b9f2916cdd51d4eb462)
* Make libnetapi_errstr use our NTSTATUS and WERROR error string macros.Günther Deschner2007-12-211-46/+3
| | | | | Guenther (This used to be commit e46aa35d432e930835206b9ce7583f46933015d8)
* Add error string for access denied in libnetapi.Günther Deschner2007-12-211-0/+3
| | | | | Guenther (This used to be commit 4df868e3c366958c64ed8445489c8d1e8a28e50b)
* Remove doubled cli_set_timeout calls from libnetapi.Günther Deschner2007-12-211-4/+0
| | | | | Guenther (This used to be commit acc5d8e784b706001457ceeeb9bd4961a13d57d2)
* Keep libnetapi_NetX calls static for now.Günther Deschner2007-12-212-13/+13
| | | | | Guenther (This used to be commit c255654c68923aca3e258906e49be82d719d5ccd)
* Merge all headers into libnetapi.h.Günther Deschner2007-12-213-69/+22
| | | | | Guenther (This used to be commit a2c5beda2ec98dea8951fb3a37774f5f325410ef)
* Implement NetServerSetInfo level 1005 in local mode with smbconf registry.Günther Deschner2007-12-211-7/+7
| | | | | Guenther (This used to be commit 15c2bc15f20a677c3c94895150e396275de6ac9b)
* Add NetServerGetInfo and NetServerSetInfo (for level 1005).Günther Deschner2007-12-213-0/+328
| | | | | Guenther (This used to be commit 1cad549f54563c3a9787624ba7a56b54107ebd57)
* Split out local and remote paths for NetGetJoinInformation.Günther Deschner2007-12-211-40/+52
| | | | | Guenther (This used to be commit d1e4f9dd5cde79f915e3e0f652621d966aa850e8)
* Add libnetapi_errstr().Günther Deschner2007-12-212-0/+51
| | | | | Guenther (This used to be commit 465e61a3599a277366ada6ecda3a1e6ddb1f2490)