Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
U
udpdk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ywj
udpdk
Commits
1b1d5d0c
Commit
1b1d5d0c
authored
Oct 05, 2020
by
Leonardo Lai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix
parent
de52d4b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
udpdk/udpdk_syscall.c
udpdk/udpdk_syscall.c
+1
-4
No files found.
udpdk/udpdk_syscall.c
View file @
1b1d5d0c
...
...
@@ -261,7 +261,7 @@ ssize_t udpdk_sendto(int sockfd, const void *buf, size_t len, int flags,
// Write payload
udp_data
=
(
void
*
)(
udp_hdr
+
1
);
strn
cpy
(
udp_data
,
buf
,
len
);
mem
cpy
(
udp_data
,
buf
,
len
);
// Put the packet in the tx_ring
if
(
rte_ring_enqueue
(
exch_slots
[
sockfd
].
tx_q
,
(
void
*
)
pkt
)
<
0
)
{
...
...
@@ -341,9 +341,6 @@ ssize_t udpdk_recvfrom(int sockfd, void *buf, size_t len, int flags,
udp_data
=
(
void
*
)(
udp_hdr
+
1
);
udp_data_len
=
pkt_len
-
sizeof
(
struct
rte_ipv4_hdr
)
-
sizeof
(
struct
rte_udp_hdr
);
printf
(
"recfrom pktlen: %d
\n
"
,
pkt_len
);
printf
(
"recfrom udp_data_len: %d
\n
"
,
udp_data_len
);
// If the provided buffer is large enough to store it, then copy the whole packet, else only part of it
if
(
udp_data_len
>=
len
)
{
eff_len
=
udp_data_len
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment