Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libwebsockets
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
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Fork
libwebsockets
Commits
7c507e47
Commit
7c507e47
authored
9 years ago
by
Andy Green
Browse files
Options
Downloads
Patches
Plain Diff
fix client getting hung up on at negotiation
Signed-off-by:
Andy Green
<
andy.green@linaro.org
>
parent
809d69aa
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
lib/client.c
+1
-0
1 addition, 0 deletions
lib/client.c
lib/service.c
+2
-0
2 additions, 0 deletions
lib/service.c
with
3 additions
and
0 deletions
lib/client.c
+
1
−
0
View file @
7c507e47
...
@@ -442,6 +442,7 @@ some_wait:
...
@@ -442,6 +442,7 @@ some_wait:
lws_latency
(
context
,
wsi
,
"send lws_issue_raw"
,
n
,
lws_latency
(
context
,
wsi
,
"send lws_issue_raw"
,
n
,
n
==
1
);
n
==
1
);
switch
(
n
)
{
switch
(
n
)
{
case
0
:
case
LWS_SSL_CAPABLE_ERROR
:
case
LWS_SSL_CAPABLE_ERROR
:
goto
bail3
;
goto
bail3
;
case
LWS_SSL_CAPABLE_MORE_SERVICE
:
case
LWS_SSL_CAPABLE_MORE_SERVICE
:
...
...
This diff is collapsed.
Click to expand it.
lib/service.c
+
2
−
0
View file @
7c507e47
...
@@ -701,6 +701,8 @@ handle_pending:
...
@@ -701,6 +701,8 @@ handle_pending:
break
;
break
;
#else
#else
n
=
lws_client_socket_service
(
context
,
wsi
,
pollfd
);
n
=
lws_client_socket_service
(
context
,
wsi
,
pollfd
);
if
(
n
)
return
1
;
goto
handled
;
goto
handled
;
#endif
#endif
}
}
...
...
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