Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sleuthkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Sleuthkit
Commits
ffcfd501
Commit
ffcfd501
authored
12 years ago
by
Sean-M
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'upstream/master'
parents
2110c79c
37a1a230
Branches
omila405-main-patch-74084
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tsk3/auto/tsk_db_sqlite.h
+11
-10
11 additions, 10 deletions
tsk3/auto/tsk_db_sqlite.h
with
11 additions
and
10 deletions
tsk3/auto/tsk_db_sqlite.h
+
11
−
10
View file @
ffcfd501
...
@@ -37,18 +37,18 @@ typedef struct sqlite3 sqlite3;
...
@@ -37,18 +37,18 @@ typedef struct sqlite3 sqlite3;
/**
/**
* Values for the object t
ype valu
e.
* Values for the
type column in the tsk_
object
s
t
abl
e.
*/
*/
typedef
enum
{
typedef
enum
{
TSK_DB_OBJECT_TYPE_IMG
=
0
,
TSK_DB_OBJECT_TYPE_IMG
=
0
,
///< Object is a disk image
TSK_DB_OBJECT_TYPE_VS
,
TSK_DB_OBJECT_TYPE_VS
,
///< Object is a volume system.
TSK_DB_OBJECT_TYPE_VOL
,
TSK_DB_OBJECT_TYPE_VOL
,
///< Object is a volume
TSK_DB_OBJECT_TYPE_FS
,
TSK_DB_OBJECT_TYPE_FS
,
///< Object is a file system
TSK_DB_OBJECT_TYPE_FILE
,
TSK_DB_OBJECT_TYPE_FILE
,
///< Object is a file (exact type can be determined in the tsk_files table via TSK_DB_FILES_TYPE_ENUM)
}
TSK_DB_OBJECT_TYPE_ENUM
;
}
TSK_DB_OBJECT_TYPE_ENUM
;
/**
/**
* Values for the files type column in the files table.
* Values for the files type column in the
tsk_
files table.
*/
*/
typedef
enum
{
typedef
enum
{
TSK_DB_FILES_TYPE_FS
=
0
,
///< File that can be found in file system tree.
TSK_DB_FILES_TYPE_FS
=
0
,
///< File that can be found in file system tree.
...
@@ -63,12 +63,13 @@ typedef enum {
...
@@ -63,12 +63,13 @@ typedef enum {
/**
/**
* Values for the "known" column of the files table
* Values for the "known" column of the
tsk_
files table
*/
*/
typedef
enum
{
typedef
enum
{
TSK_DB_FILES_KNOWN_UNKNOWN
=
0
,
///< Not matched against an index
TSK_DB_FILES_KNOWN_UNKNOWN
=
0
,
///< Not matched against an index
TSK_DB_FILES_KNOWN_KNOWN
=
1
,
///< Match found in NSRL "known" file index
TSK_DB_FILES_KNOWN_KNOWN
=
1
,
///< Match found in a "known" file index (such as NIST NSRL)and could be good or bad.
TSK_DB_FILES_KNOWN_KNOWN_BAD
=
2
,
///< Match found in "known bad" index
TSK_DB_FILES_KNOWN_KNOWN_BAD
=
2
,
///< Match found in a "known bad" index
TSK_DB_FILES_KNOWN_KNOWN_GOOD
=
3
,
///< Match found in a "known good" index
}
TSK_DB_FILES_KNOWN_ENUM
;
}
TSK_DB_FILES_KNOWN_ENUM
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment