Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
4e88857b
Commit
4e88857b
authored
Apr 25, 2016
by
Cédric Roux
Browse files
let the soft-modem (or the program being traced, whatever it is) try
to connect until it succeeds
parent
a1aa6658
Changes
1
Hide whitespace changes
Inline
Side-by-side
common/utils/T/T.c
View file @
4e88857b
...
...
@@ -113,15 +113,27 @@ void T_connect_to_tracer(char *addr, int port)
int
T_shm_fd
;
#endif
if
(
strcmp
(
addr
,
"127.0.0.1"
)
!=
0
)
{
printf
(
"error: local tracer must be on same host
\n
"
);
abort
();
}
printf
(
"connecting to local tracer on port %d
\n
"
,
port
);
again:
s
=
socket
(
AF_INET
,
SOCK_STREAM
,
0
);
if
(
s
==
-
1
)
{
perror
(
"socket"
);
exit
(
1
);
}
a
.
sin_family
=
AF_INET
;
a
.
sin_port
=
htons
(
port
);
a
.
sin_addr
.
s_addr
=
inet_addr
(
addr
);
if
(
connect
(
s
,
(
struct
sockaddr
*
)
&
a
,
sizeof
(
a
))
==
-
1
)
{
perror
(
"connect"
);
exit
(
1
);
}
a
.
sin_addr
.
s_addr
=
inet_addr
(
"127.0.0.1"
);
if
(
connect
(
s
,
(
struct
sockaddr
*
)
&
a
,
sizeof
(
a
))
==
-
1
)
{
perror
(
"connect"
);
close
(
s
);
printf
(
"trying again in 1s
\n
"
);
sleep
(
1
);
goto
again
;
}
/* wait for first message - initial list of active T events */
get_message
(
s
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment