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
21ca64ba
Commit
21ca64ba
authored
12 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
Fixed compiler warning and added comment about updating java code with enum changes
parent
2f015184
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tsk/auto/tsk_case_db.h
+1
-1
1 addition, 1 deletion
tsk/auto/tsk_case_db.h
tsk/fs/tsk_fs.h
+5
-1
5 additions, 1 deletion
tsk/fs/tsk_fs.h
with
6 additions
and
2 deletions
tsk/auto/tsk_case_db.h
+
1
−
1
View file @
21ca64ba
...
@@ -124,7 +124,7 @@ class TskAutoDb:public TskAuto {
...
@@ -124,7 +124,7 @@ class TskAutoDb:public TskAuto {
//internal structure to keep track of temp. unalloc block range
//internal structure to keep track of temp. unalloc block range
typedef
struct
_UNALLOC_BLOCK_WLK_TRACK
{
typedef
struct
_UNALLOC_BLOCK_WLK_TRACK
{
_UNALLOC_BLOCK_WLK_TRACK
(
const
TskAutoDb
&
tskAutoDb
,
const
TSK_FS_INFO
&
fsInfo
,
const
int64_t
fsObjId
,
int64_t
chunkSize
)
_UNALLOC_BLOCK_WLK_TRACK
(
const
TskAutoDb
&
tskAutoDb
,
const
TSK_FS_INFO
&
fsInfo
,
const
int64_t
fsObjId
,
int64_t
chunkSize
)
:
tskAutoDb
(
tskAutoDb
),
fsInfo
(
fsInfo
),
fsObjId
(
fsObjId
),
curRangeStart
(
0
),
prevBlock
(
0
),
isStart
(
true
)
,
chunkSize
(
chunkSize
)
{}
:
tskAutoDb
(
tskAutoDb
),
fsInfo
(
fsInfo
),
fsObjId
(
fsObjId
),
curRangeStart
(
0
),
chunkSize
(
chunkSize
),
prevBlock
(
0
),
isStart
(
true
)
{}
const
TskAutoDb
&
tskAutoDb
;
const
TskAutoDb
&
tskAutoDb
;
const
TSK_FS_INFO
&
fsInfo
;
const
TSK_FS_INFO
&
fsInfo
;
const
int64_t
fsObjId
;
const
int64_t
fsObjId
;
...
...
This diff is collapsed.
Click to expand it.
tsk/fs/tsk_fs.h
+
5
−
1
View file @
21ca64ba
...
@@ -214,7 +214,9 @@ extern "C" {
...
@@ -214,7 +214,9 @@ extern "C" {
/**
/**
* These are based on the NTFS type values.
* These are based on the NTFS type values.
* Added types for HFS+.
* Added types for HFS+.
* NOTE: Update bindings/java/src/org/sleuthkit/datamodel/TskData.java
* with any changes.
*/
*/
typedef
enum
{
typedef
enum
{
TSK_FS_ATTR_TYPE_NOT_FOUND
=
0x00
,
// 0
TSK_FS_ATTR_TYPE_NOT_FOUND
=
0x00
,
// 0
...
@@ -767,6 +769,8 @@ extern "C" {
...
@@ -767,6 +769,8 @@ extern "C" {
TSK_FS_TYPE_YAFFS2_DETECT
=
0x00003000
,
///< YAFFS2 auto detection
TSK_FS_TYPE_YAFFS2_DETECT
=
0x00003000
,
///< YAFFS2 auto detection
TSK_FS_TYPE_UNSUPP
=
0xffffffff
,
///< Unsupported file system
TSK_FS_TYPE_UNSUPP
=
0xffffffff
,
///< Unsupported file system
};
};
/* NOTE: Update bindings/java/src/org/sleuthkit/datamodel/TskData.java
* with any changes. */
typedef
enum
TSK_FS_TYPE_ENUM
TSK_FS_TYPE_ENUM
;
typedef
enum
TSK_FS_TYPE_ENUM
TSK_FS_TYPE_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