Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
3d8211fb
Commit
3d8211fb
authored
13 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Introduced smb_hfield_replace[_str] functions allowing an in memory header
field value to be replaced.
parent
380b3621
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/smblib/smblib.c
+41
-3
41 additions, 3 deletions
src/smblib/smblib.c
src/smblib/smblib.h
+3
-1
3 additions, 1 deletion
src/smblib/smblib.h
with
44 additions
and
4 deletions
src/smblib/smblib.c
+
41
−
3
View file @
3d8211fb
...
...
@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 20
09
Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 20
11
Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
...
...
@@ -1176,7 +1176,7 @@ int SMBCALL smb_hfield_add_list(smbmsg_t* msg, hfield_t** hfield_list, void** hf
/****************************************************************************/
int
SMBCALL
smb_hfield_add_str
(
smbmsg_t
*
msg
,
ushort
type
,
const
char
*
str
,
BOOL
insert
)
{
return
smb_hfield_add
(
msg
,
type
,
strlen
(
str
),
(
void
*
)
str
,
insert
);
return
smb_hfield_add
(
msg
,
type
,
str
==
NULL
?
0
:
strlen
(
str
),
(
void
*
)
str
,
insert
);
}
/****************************************************************************/
...
...
@@ -1241,7 +1241,45 @@ int SMBCALL smb_hfield_append(smbmsg_t* msg, ushort type, size_t length, void* d
/****************************************************************************/
int
SMBCALL
smb_hfield_append_str
(
smbmsg_t
*
msg
,
ushort
type
,
const
char
*
str
)
{
return
smb_hfield_append
(
msg
,
type
,
strlen
(
str
),
(
void
*
)
str
);
return
smb_hfield_append
(
msg
,
type
,
str
==
NULL
?
0
:
strlen
(
str
),
(
void
*
)
str
);
}
/****************************************************************************/
/* Replaces an header field value (in memory only) */
/****************************************************************************/
int
SMBCALL
smb_hfield_replace
(
smbmsg_t
*
msg
,
ushort
type
,
size_t
length
,
const
void
*
data
)
{
int
i
;
void
*
p
;
if
(
msg
->
total_hfields
<
1
)
return
(
SMB_ERR_NOT_FOUND
);
/* search for the last header field of this type */
for
(
i
=
msg
->
total_hfields
-
1
;
i
>=
0
;
i
--
)
if
(
msg
->
hfield
[
i
].
type
==
type
)
break
;
if
(
i
<
0
)
return
(
SMB_ERR_NOT_FOUND
);
if
((
p
=
(
BYTE
*
)
realloc
(
msg
->
hfield_dat
[
i
],
length
+
1
))
==
NULL
)
return
(
SMB_ERR_MEM
);
/* Allocate 1 extra for ASCIIZ terminator */
msg
->
hfield_dat
[
i
]
=
p
;
memset
(
p
,
0
,
length
+
1
);
memcpy
(
p
,
data
,
length
);
msg
->
hfield
[
i
].
length
=
length
;
set_convenience_ptr
(
msg
,
type
,
msg
->
hfield_dat
[
i
]);
return
SMB_SUCCESS
;
}
/****************************************************************************/
/* Replace an existing ASCIIZ header field value (in memory only) */
/****************************************************************************/
int
SMBCALL
smb_hfield_replace_str
(
smbmsg_t
*
msg
,
ushort
type
,
const
char
*
str
)
{
return
smb_hfield_replace
(
msg
,
type
,
str
==
NULL
?
0
:
strlen
(
str
),
(
void
*
)
str
);
}
/****************************************************************************/
...
...
This diff is collapsed.
Click to expand it.
src/smblib/smblib.h
+
3
−
1
View file @
3d8211fb
...
...
@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 20
09
Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 20
11
Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
...
...
@@ -126,6 +126,8 @@ SMBEXPORT int SMBCALL smb_addcrc(smb_t* smb, uint32_t crc);
SMBEXPORT
int
SMBCALL
smb_hfield_add
(
smbmsg_t
*
msg
,
ushort
type
,
size_t
length
,
void
*
data
,
BOOL
insert
);
SMBEXPORT
int
SMBCALL
smb_hfield_add_str
(
smbmsg_t
*
msg
,
ushort
type
,
const
char
*
str
,
BOOL
insert
);
SMBEXPORT
int
SMBCALL
smb_hfield_replace
(
smbmsg_t
*
msg
,
ushort
type
,
size_t
length
,
void
*
data
);
SMBEXPORT
int
SMBCALL
smb_hfield_replace_str
(
smbmsg_t
*
msg
,
ushort
type
,
const
char
*
str
);
SMBEXPORT
int
SMBCALL
smb_hfield_append
(
smbmsg_t
*
msg
,
ushort
type
,
size_t
length
,
void
*
data
);
SMBEXPORT
int
SMBCALL
smb_hfield_append_str
(
smbmsg_t
*
msg
,
ushort
type
,
const
char
*
data
);
SMBEXPORT
int
SMBCALL
smb_hfield_add_list
(
smbmsg_t
*
msg
,
hfield_t
**
hfield_list
,
void
**
hfield_dat
,
BOOL
insert
);
...
...
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