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
d99595c2
Commit
d99595c2
authored
Dec 30, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
listen: eliminated freeAllListenSockets()
Merged freeAllListenSockets() into closeAllListenSockets(), because this is its only caller.
parent
4cc0caf1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
5 deletions
+0
-5
listen.c
src/listen.c
+0
-4
listen.h
src/listen.h
+0
-1
No files found.
src/listen.c
View file @
d99595c2
...
...
@@ -272,11 +272,7 @@ void closeAllListenSockets(void)
g_debug
(
"closing listen socket %i"
,
i
);
while
(
close
(
listenSockets
[
i
])
<
0
&&
errno
==
EINTR
)
;
}
freeAllListenSockets
();
}
void
freeAllListenSockets
(
void
)
{
numberOfListenSockets
=
0
;
free
(
listenSockets
);
listenSockets
=
NULL
;
...
...
src/listen.h
View file @
d99595c2
...
...
@@ -28,7 +28,6 @@ void listenOnPort(void);
void
getConnections
(
fd_set
*
fds
);
void
closeAllListenSockets
(
void
);
void
freeAllListenSockets
(
void
);
/* fdmax should be initialized to something */
void
addListenSocketsToFdSet
(
fd_set
*
fds
,
int
*
fdmax
);
...
...
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