blob: ad337235e36154d2dbe29240d2d6d48d692fbf2b [file] [log] [blame]
James Robinsona1096332015-05-06 11:28:00 -07001Name: Darwin
2URL: http://www.opensource.apple.com/
3Version: unknown
4Security Critical: yes
5License: Apple Public Source License 2.0
6
7Four files are excerpted here:
8
9malloc.h from:
10http://www.opensource.apple.com/source/Libc/Libc-763.11/include/malloc/malloc.h
11
12Modifications:
13- Modified #ifdef guards.
14- Removed everything but the definition of malloc_zone_t.
15- Renamed _malloc_zone_t to ChromeMallocZone to avoid possible name conflicts.
16
17CFRuntime.h from:
18http://www.opensource.apple.com/source/CF/CF-635/CFRuntime.h
19
20Modifications:
21- Modified #ifdef guards.
22- Removed everything but the definition of CFRuntimeBase.
23- Renamed CFRuntimeBase to ChromeCFRuntimeBase to avoid possible name conflicts.
24
25CFBase.h from:
26http://www.opensource.apple.com/source/CF/CF-550/CFBase.c
27http://www.opensource.apple.com/source/CF/CF-635/CFBase.c
28
29Modifications:
30- Renamed the file to CFBase.h.
31- Added #ifdef guards.
32- Added an #include of the CFRuntime.h file.
33- Removed everything but the definition of __CFAllocator.
34- Modified the reference of CFRuntimeBase to ChromeCFRuntimeBase.
35- Renamed __CFAllocator to ChromeCFAllocatorLeopards (from CF-550) and to
36 ChromeCFAllocatorLions (from CF-635) to avoid possible name conflicts.
37
38cssmapplePriv.h from:
39http://www.opensource.apple.com/source/libsecurity_cssm/libsecurity_cssm-31536/lib/cssmapplePriv.h
40
41Warning: Technically, this is a private Apple header, and as such provides no
42guarantee for API stability. However, the use of this header is the only way
43to implement OCSP checking per Apple's public documentation on the usage of
44their Trust Policy Module. Further, the use of this private header is the
45recommended approach from Apple for modifying OCSP policies.
46
47See: http://developer.apple.com/documentation/Security/Reference/SecAppleTrustPolicyModuleSpec/Apple_Trust_Policy_Module_Functional_Specification.pdf
48and http://lists.apple.com/archives/apple-cdsa/2008/Aug/msg00008.html
49
50Modifications:
51- Removed unneeded definitions for internal Apple CSP DL enums and structs
52
53dnsinfo.h from:
54http://www.opensource.apple.com/source/configd/configd-453.19/dnsinfo/dnsinfo.h
55
56Provides dns_config_t which is used by /net/dns/dns_config_service_posix.cc to
57obtain system DNS configuration on Mac OS X. This private header is also used by
58Apple's open source mDNSResponder.
59
60Modifications:
61- Removed Availability.h and the corresponding macros.