Skip to content

Commit 0b83da5

Browse files
committed
fix timestamp issue
1 parent 1fc0b59 commit 0b83da5

File tree

9 files changed

+2
-2
lines changed

9 files changed

+2
-2
lines changed

librte_ans/librte_ans_broadwell.a

-40 Bytes
Binary file not shown.

librte_ans/librte_ans_core2.a

-40 Bytes
Binary file not shown.

librte_ans/librte_ans_haswell.a

-40 Bytes
Binary file not shown.

librte_ans/librte_ans_ivybridge.a

-40 Bytes
Binary file not shown.

librte_ans/librte_ans_knl.a

-8 Bytes
Binary file not shown.
-40 Bytes
Binary file not shown.

librte_ans/librte_ans_westmere.a

-40 Bytes
Binary file not shown.

test/dpdk_tcp_client/dpdk_tcp_client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ int main(void)
214214
memset(&remote_addr, 0, sizeof(remote_addr));
215215
remote_addr.sin_family = AF_INET;
216216
remote_addr.sin_port = htons(8000);
217-
remote_addr.sin_addr.s_addr = inet_addr("10.0.0.10"); ;
217+
remote_addr.sin_addr.s_addr = inet_addr("10.0.0.10");
218218

219219
if(anssock_connect(fd[i], (struct sockaddr *)&remote_addr, sizeof(struct sockaddr)) < 0 && errno != EINPROGRESS)
220220
{

test/linux_tcp_client/linux_tcp_client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ int main(void)
132132
memset(&remote_addr, 0, sizeof(remote_addr));
133133
remote_addr.sin_family = AF_INET;
134134
remote_addr.sin_port = htons(8000);
135-
remote_addr.sin_addr.s_addr = htonl(0x02020202);
135+
remote_addr.sin_addr.s_addr = inet_addr("10.0.0.2");
136136

137137
if(connect(fd, (struct sockaddr *)&remote_addr, sizeof(struct sockaddr)) < 0)
138138
{

0 commit comments

Comments
 (0)