1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

3736 Commits

Author SHA1 Message Date
Andrew Tridgell
bfa870262e r5079: don't look for gss_display_status() in libgssapi_krb5 unless we
haven't already got it from libgssapi. This should fix the problem of
building with heimdal when we have MIT installed
2007-10-10 13:09:20 -05:00
Tim Potter
36b46bb05a r5074: Remove dead code. 2007-10-10 13:09:20 -05:00
Tim Potter
a1c98101e4 r5073: Call new autogenerator function for swig stuff instead of old one. 2007-10-10 13:09:20 -05:00
Tim Potter
c2996ad910 r5072: oDecrease the amount of autogenerated code (sorry tridge) and use swig's
structure mapping features instead of doing it all ourselves.

This basically works, but has broken all the existing checked in Python
code.

Sample:

pipe = dcerpc.pipe_connect(binding,
        dcerpc.DCERPC_SAMR_UUID, int(dcerpc.DCERPC_SAMR_VERSION),
        domain, username, password)

r = dcerpc.samr_Connect2()
r.data_in.system_name = 'foo'
r.data_in.access_mask = 0x02000000

result = dcerpc.dcerpc_samr_Connect2(pipe, r)
2007-10-10 13:09:19 -05:00
Jeremy Allison
554e27023f r5071: Reverted (per tridge request).
Jeremy.
2007-10-10 13:09:19 -05:00
Jeremy Allison
40c1e16b5b r5068: I'm pretty sure an old search request is allowed to return changed case
versions of filenames. Tridge please check I haven't screwed this up.
Jeremy.
2007-10-10 13:09:18 -05:00
Andrew Tridgell
9587cbcb9e r5054: added a nmblookup tool, based on the new nbt library 2007-10-10 13:09:18 -05:00
Andrew Tridgell
3351c636af r5053: - fix up the library dependencies so that tools that need nbt don't
need to pull in the whole dcerpc subsystem

- moved smbencrypt.c code into libcli/auth/
2007-10-10 13:09:18 -05:00
Andrew Tridgell
4337901c1b r5052: minor formatting fix 2007-10-10 13:09:18 -05:00
Andrew Tridgell
7bd4ced313 r5051: initialise all elements of an array (thanks to Mike Allan for pointing
this out)
2007-10-10 13:09:18 -05:00
Andrew Tridgell
8ebc61a229 r5050: make sure we translate the generic to the specific bits before doing a
pvfs_access_check_unix().

Fixes a problem with the cifsfs filesystem
2007-10-10 13:09:17 -05:00
Andrew Tridgell
82e331db5f r5049: updated howto.txt with new provisioning instructions 2007-10-10 13:09:17 -05:00
Andrew Tridgell
9aa5b07696 r5048: made the provision.pl script much less error prone (you don't need to
rename a bunch of files)
2007-10-10 13:09:17 -05:00
Tim Potter
f9e56d39c9 r5047: Fix swig dependencies. 2007-10-10 13:09:17 -05:00
Stefan Metzmacher
cbb6b80f41 r5045: add TODO comment
metze
2007-10-10 13:09:17 -05:00
Stefan Metzmacher
030bfd8d7f r5044: fix pidl--swig
metze
2007-10-10 13:09:17 -05:00
Andrew Tridgell
1333522a6b r5043: this broke more systems than it helped. Remove it and try to work
around broken solaris headers some other way.
2007-10-10 13:09:17 -05:00
Andrew Tridgell
11277ddb4c r5042: another attempt to get solaris10 building 2007-10-10 13:09:16 -05:00
Stefan Metzmacher
917a3b214a r5041: add more verbose output for the krb5 libs detection
metze
2007-10-10 13:09:16 -05:00
Andrew Tridgell
d9c1bf1060 r5040: attempt to get solaris10 building by defining _XOPEN_SOURCE 2007-10-10 13:09:16 -05:00
Andrew Tridgell
dd67a5d833 r5039: fixed eparser not to generate talloc_p() 2007-10-10 13:09:16 -05:00
Andrew Tridgell
03697fc761 r5038: we don't need these defines any more 2007-10-10 13:09:16 -05:00
Andrew Tridgell
ec32b22ed5 r5037: got rid of all of the TALLOC_DEPRECATED stuff. My apologies for the
large commit. I thought this was worthwhile to get done for
consistency.
2007-10-10 13:09:15 -05:00
Andrew Tridgell
1d1a9c11ee r5036: changed HYPER_T to the more standard "hyper" 2007-10-10 13:09:15 -05:00
Andrew Tridgell
f36e4cf686 r5035: fixed composite test to use --num-ops command line option 2007-10-10 13:09:15 -05:00
Andrew Tridgell
f86521677d r5034: - added a type mapping function in pidl, so the type names in our IDL
files don't need to match the type names in the generated headers

- with this type mapping we no longer need definitions for the
  deprecated "int32", "uint8" etc form of types. We can now force
  everyone to use the standard types int32_t, uint8_t etc.

- fixed all the code that used the deprecated types

- converted the IDL types "int64" and "uint64" to "dlong" and
  "udlong". These are the 4 byte aligned 64 bit integers that
  Microsoft internally define as two 32 bit integers in a
  structure. After discussions with Ronnie Sahlberg we decided that
  calling these "int64" was confusing, as it implied a true 8 byte
  aligned type

- fixed all the cases where we incorrectly used things like
  "NTTIME_hyper" in our C code. The generated API now uses a NTTIME for
  those. The fact that it is hyper-aligned on the wire is not relevant
  to the API, and should remain just a IDL property
2007-10-10 13:09:15 -05:00
Tim Potter
5ec9fad5cf r5033: Remove --with-eparserdir configure option and eparser_idl make target.
This is all done in the lorikeet/ethereal Makefile now.
2007-10-10 13:09:14 -05:00
Andrew Tridgell
dc8c7cb85c r5032: get rid of the init fns in eparser 2007-10-10 13:09:14 -05:00
Andrew Tridgell
765ede8ca6 r5027: added the IDL license to the IDL directory 2007-10-10 13:09:14 -05:00
Tim Potter
df35f1debf r5026: Don't build the swig stuff by default until it's a bit more stable. 2007-10-10 13:09:14 -05:00
Tim Potter
425b988541 r5024: Fix build. 2007-10-10 13:09:14 -05:00
Tim Potter
c252a286ef r5019: Some tweaks to building the swig .i files. 2007-10-10 13:09:14 -05:00
Tim Potter
95d2a58e5b r5018: Initialise required subsystems (by hand, generated by substituting
BINARY for LIBRARY in config.mk).

Cut things down to just the samr pipe for the moment.
2007-10-10 13:09:14 -05:00
Tim Potter
dc845154ca r5017: Fix bug in output typemap for uint32 (!) 2007-10-10 13:09:14 -05:00
Tim Potter
e9b69d19a8 r5016: Use LIBRARY instead of BINARY for inserting the swig stuff into the
build system.  This still generates bogus targets (i.e
bin/swig_dcerpc.so.0.0.1) and the subsystem initialisation needs to be
done by hand but it is less of a hack.
2007-10-10 13:09:13 -05:00
Günther Deschner
d925606bbf r5011: Do not use KRB5_CONFIG internally as it is used by MIT and Heimdal to find
the configfile (/etc/krb5.conf). Kerberos-Tests tend to segfault when
reading the krb5-config binary as configuration-file...
Also allow KRB5CONFIG to be passed over again
(KRB5CONFIG=/my/heimdal/bin/krb5-config ./configure...)

Guenther
2007-10-10 13:09:13 -05:00
Tim Potter
a38db33713 r5010: Handle weird-ass NTTIME_1sec and NTTIME_hyper types. 2007-10-10 13:09:13 -05:00
Tim Potter
8ca1e3aa3b r5009: Put bitmaps in their own subtree. 2007-10-10 13:09:13 -05:00
Tim Potter
493ba2da6b r5008: 32-bits is the default bitmap size. 2007-10-10 13:09:13 -05:00
Tim Potter
e983de6ead r5007: Fix bug in regexp where we were eating the strings "in" or "out" from
structure names if they started with those strings.
2007-10-10 13:09:13 -05:00
Tim Potter
a34212247b r5006: Implement parsing of pidl bitmaps in ethereal parsers. This works
well but needs to be stuck in a subtree.
2007-10-10 13:09:13 -05:00
Tim Potter
19a907cb58 r5005: Add missing size specifiers to various bitmaps. 2007-10-10 13:09:12 -05:00
Andrew Tridgell
854f7f376d r5004: add current samba3 nmblookup.c ready for updating to new nbt lib 2007-10-10 13:09:12 -05:00
Andrew Tridgell
b781a54244 r5003: delete old nmblookup.c code 2007-10-10 13:09:12 -05:00
Tim Potter
6f418f1426 r4993: Generate nicer name for enum hf.
Start work on supporting bitmaps.
2007-10-10 13:09:12 -05:00
Tim Potter
4640d3371e r4991: Remove debugging statement. 2007-10-10 13:09:12 -05:00
Tim Potter
edaf81b639 r4990: Generate value strings for pidl enumerations. 2007-10-10 13:09:12 -05:00
Tim Potter
c2664bb365 r4983: On second thoughts don't include the config.mk file for the swig stuff
just yet.  More testing required.
2007-10-10 13:09:12 -05:00
Tim Potter
71a22f5206 r4982: Start to move swig dependencies into new build system. Unfortunately
I can only get something useful happening by using the BINARY keyword
as nothing else seems to generate dependency lists that can be used
when linking the swig shared libraries.  Anyway this is a lot nicer
than having lots of junk in makefile.pm.
2007-10-10 13:09:11 -05:00
Tim Potter
b44ab87c83 r4981: Fix swig build. 2007-10-10 13:09:11 -05:00