vfs: check userland buffers before reading them.
[haiku.git] / src / kits / package / Attributes.cpp
blobb9067addf6e8602d1dd95ac63acd8405b83262e7
1 /*
2 * Copyright 2011, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Oliver Tappe <zooey@hirschkaefer.de>
7 */
10 #include <package/Attributes.h>
13 namespace BPackageKit {
16 // attributes used in package and as BFS-attribute
17 const char* kPackageNameAttribute = "PKG:name";
18 const char* kPackagePlatformAttribute = "PKG:platform";
19 const char* kPackageVendorAttribute = "PKG:vendor";
20 const char* kPackageVersionAttribute = "PKG:version";
22 // attributes kept local to packages
23 const char* kPackageCopyrightsAttribute = "PKG:copyrights";
24 const char* kPackageLicensesAttribute = "PKG:licenses";
25 const char* kPackagePackagerAttribute = "PKG:packager";
26 const char* kPackageProvidesAttribute = "PKG:provides";
27 const char* kPackageRequiresAttribute = "PKG:requires";
30 } // namespace BPackageKit