Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Packetdrill_tarr_ext
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stefan Gense
Packetdrill_tarr_ext
Commits
e0182ab1
Commit
e0182ab1
authored
9 years ago
by
hoelscher
Browse files
Options
Downloads
Patches
Plain Diff
Add struct for sctp_events
parent
f9d45451
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
gtests/net/packetdrill/run_system_call.c
+3
-0
3 additions, 0 deletions
gtests/net/packetdrill/run_system_call.c
gtests/net/packetdrill/script.h
+16
-0
16 additions, 0 deletions
gtests/net/packetdrill/script.h
with
19 additions
and
0 deletions
gtests/net/packetdrill/run_system_call.c
+
3
−
0
View file @
e0182ab1
...
@@ -3759,6 +3759,9 @@ static int check_sctp_notification(struct iovec *iov,
...
@@ -3759,6 +3759,9 @@ static int check_sctp_notification(struct iovec *iov,
case
EXPR_ELLIPSIS
:
case
EXPR_ELLIPSIS
:
break
;
break
;
default:
default:
asprintf
(
error
,
"Bad type for iov_base. Can't check type %s"
,
expression_type_to_string
(
script_iov_base
->
type
));
return
STATUS_ERR
;
break
;
break
;
}
}
i
++
;
i
++
;
...
...
This diff is collapsed.
Click to expand it.
gtests/net/packetdrill/script.h
+
16
−
0
View file @
e0182ab1
...
@@ -56,6 +56,7 @@ enum expression_t {
...
@@ -56,6 +56,7 @@ enum expression_t {
EXPR_SCTP_PEER_ADDR_PARAMS
,
/* struct for sctp_paddrparams for SCTP_PEER_ADDR_PARAMS */
EXPR_SCTP_PEER_ADDR_PARAMS
,
/* struct for sctp_paddrparams for SCTP_PEER_ADDR_PARAMS */
EXPR_SCTP_ASSOCPARAMS
,
/* struct sctp_assocparams for SCTP_ASSOCINFO */
EXPR_SCTP_ASSOCPARAMS
,
/* struct sctp_assocparams for SCTP_ASSOCINFO */
EXPR_SCTP_EVENT
,
/* struct sctp_event for SCTP_EVENT */
EXPR_SCTP_EVENT
,
/* struct sctp_event for SCTP_EVENT */
EXPR_SCTP_EVENT_SUBSCRIBE
,
/* struct sctp_event_subscribe for SCTP_EVENTS */
EXPR_SCTP_SNDINFO
,
/* struct sctp_sndinfo for SCTP_DEFAULT_SNDINFO */
EXPR_SCTP_SNDINFO
,
/* struct sctp_sndinfo for SCTP_DEFAULT_SNDINFO */
EXPR_SCTP_SETADAPTATION
,
/* struct sctp_setadaptation for SCTP_ADATTATION_LAYER */
EXPR_SCTP_SETADAPTATION
,
/* struct sctp_setadaptation for SCTP_ADATTATION_LAYER */
EXPR_SCTP_SNDRCVINFO
,
/* struct sctp_sndrcvinfo for syscall sctp_recvmsg */
EXPR_SCTP_SNDRCVINFO
,
/* struct sctp_sndrcvinfo for syscall sctp_recvmsg */
...
@@ -95,6 +96,7 @@ struct expression {
...
@@ -95,6 +96,7 @@ struct expression {
struct
sctp_stream_value_expr
*
sctp_stream_value
;
struct
sctp_stream_value_expr
*
sctp_stream_value
;
struct
sctp_assocparams_expr
*
sctp_assocparams
;
struct
sctp_assocparams_expr
*
sctp_assocparams
;
struct
sctp_event_expr
*
sctp_event
;
struct
sctp_event_expr
*
sctp_event
;
struct
sctp_event_subscribe_expr
*
sctp_event_subscribe
;
struct
sctp_sndinfo_expr
*
sctp_sndinfo
;
struct
sctp_sndinfo_expr
*
sctp_sndinfo
;
struct
sctp_setadaptation_expr
*
sctp_setadaptation
;
struct
sctp_setadaptation_expr
*
sctp_setadaptation
;
struct
sctp_sndrcvinfo_expr
*
sctp_sndrcvinfo
;
struct
sctp_sndrcvinfo_expr
*
sctp_sndrcvinfo
;
...
@@ -232,6 +234,20 @@ struct sctp_event_expr {
...
@@ -232,6 +234,20 @@ struct sctp_event_expr {
struct
expression
*
se_on
;
struct
expression
*
se_on
;
};
};
/* Parse tree for sctp_event_subscribe struct in [gs]etsockopt syscall. */
struct
sctp_event_subscribe_expr
{
struct
expression
*
sctp_data_io_event
;
struct
expression
*
sctp_association_event
;
struct
expression
*
sctp_address_event
;
struct
expression
*
sctp_send_failure_event
;
struct
expression
*
sctp_peer_error_event
;
struct
expression
*
sctp_shutdown_event
;
struct
expression
*
sctp_partial_delivery_event
;
struct
expression
*
sctp_adaptation_layer_event
;
struct
expression
*
sctp_authentication_event
;
struct
expression
*
sctp_sender_dry_event
;
};
/* Parse tree for sctp_sndinfo struct in [gs]etsockopt syscall. */
/* Parse tree for sctp_sndinfo struct in [gs]etsockopt syscall. */
struct
sctp_sndinfo_expr
{
struct
sctp_sndinfo_expr
{
struct
expression
*
snd_sid
;
struct
expression
*
snd_sid
;
...
...
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