Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
1477b64d
Commit
1477b64d
authored
Jan 04, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'patch-2' of
git://github.com/HyShai/MPD
Closes #343
parents
a2c108f5
18c042d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
NEWS
NEWS
+2
-0
EventPipe.cxx
src/system/EventPipe.cxx
+1
-1
No files found.
NEWS
View file @
1477b64d
...
@@ -5,6 +5,8 @@ ver 0.21.4 (not yet released)
...
@@ -5,6 +5,8 @@ ver 0.21.4 (not yet released)
* output
* output
- httpd: declare protocol "HTTP/1.1" instead of "ICY"
- httpd: declare protocol "HTTP/1.1" instead of "ICY"
* remove libwrap support
* remove libwrap support
* Windows
- fix "Failed to accept connection: unknown error"
* fix Haiku build
* fix Haiku build
ver 0.21.3 (2018/11/16)
ver 0.21.3 (2018/11/16)
...
...
src/system/EventPipe.cxx
View file @
1477b64d
...
@@ -102,7 +102,7 @@ PoorSocketPair(int fd[2])
...
@@ -102,7 +102,7 @@ PoorSocketPair(int fd[2])
assert
(
fd
!=
nullptr
);
assert
(
fd
!=
nullptr
);
UniqueSocketDescriptor
listen_socket
;
UniqueSocketDescriptor
listen_socket
;
if
(
!
listen_socket
.
Create
NonBlock
(
AF_INET
,
SOCK_STREAM
,
IPPROTO_TCP
))
if
(
!
listen_socket
.
Create
(
AF_INET
,
SOCK_STREAM
,
IPPROTO_TCP
))
throw
MakeSocketError
(
"Failed to create socket"
);
throw
MakeSocketError
(
"Failed to create socket"
);
if
(
!
listen_socket
.
Bind
(
IPv4Address
(
IPv4Address
::
Loopback
(),
0
)))
if
(
!
listen_socket
.
Bind
(
IPv4Address
(
IPv4Address
::
Loopback
(),
0
)))
...
...
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