Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Sebastian Mayr
wine
Commits
5591c969
Commit
5591c969
authored
17 years ago
by
Damjan Jovanovic
Committed by
Alexandre Julliard
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ws2_32: Silently ignore WS_IP_DONTFRAGMENT.
parent
58639cc8
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/ws2_32/socket.c
+7
-0
7 additions, 0 deletions
dlls/ws2_32/socket.c
with
7 additions
and
0 deletions
dlls/ws2_32/socket.c
+
7
−
0
View file @
5591c969
...
...
@@ -1924,6 +1924,10 @@ INT WINAPI WS_getsockopt(SOCKET s, INT level,
}
release_sock_fd
(
s
,
fd
);
return
ret
;
case
WS_IP_DONTFRAGMENT
:
FIXME
(
"WS_IP_DONTFRAGMENT is always false!
\n
"
);
*
(
BOOL
*
)
optval
=
FALSE
;
return
0
;
}
FIXME
(
"Unknown IPPROTO_IP optname 0x%08x
\n
"
,
optname
);
return
SOCKET_ERROR
;
...
...
@@ -3008,6 +3012,9 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
case
WS_IP_TTL
:
convert_sockopt
(
&
level
,
&
optname
);
break
;
case
WS_IP_DONTFRAGMENT
:
FIXME
(
"IP_DONTFRAGMENT is silently ignored!
\n
"
);
return
0
;
default:
FIXME
(
"Unknown IPPROTO_IP optname 0x%08x
\n
"
,
optname
);
return
SOCKET_ERROR
;
...
...
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