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
c0197c58
Commit
c0197c58
authored
Aug 28, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
client: renamed all public functions
Functions which operate on the whole client list are prefixed with "client_manager_", and functions which handle just one client just get "client_".
parent
6d18e000
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
19 deletions
+19
-19
client.c
src/client.c
+6
-6
client.h
src/client.h
+6
-6
directory.c
src/directory.c
+1
-1
listen.c
src/listen.c
+1
-1
main.c
src/main.c
+4
-4
myfprintf.c
src/myfprintf.c
+1
-1
No files found.
src/client.c
View file @
c0197c58
...
...
@@ -234,7 +234,7 @@ static void client_close(struct client *client)
SECURE
(
"client %i: closed
\n
"
,
client
->
num
);
}
void
openAInterface
(
int
fd
,
const
struct
sockaddr
*
addr
)
void
client_new
(
int
fd
,
const
struct
sockaddr
*
addr
)
{
unsigned
int
i
;
...
...
@@ -476,7 +476,7 @@ static void closeNextErroredInterface(void)
}
}
int
doIOForInterfaces
(
void
)
int
client_manager_io
(
void
)
{
fd_set
rfds
;
fd_set
wfds
;
...
...
@@ -535,7 +535,7 @@ int doIOForInterfaces(void)
return
1
;
}
void
initInterfaces
(
void
)
void
client_manager_init
(
void
)
{
unsigned
int
i
;
char
*
test
;
...
...
@@ -613,7 +613,7 @@ static void client_close_all(void)
free
(
list_cache
);
}
void
freeAllInterfaces
(
void
)
void
client_manager_deinit
(
void
)
{
client_close_all
();
...
...
@@ -622,7 +622,7 @@ void freeAllInterfaces(void)
client_max_connections
=
0
;
}
void
cl
oseOldInterfaces
(
void
)
void
cl
ient_manager_expire
(
void
)
{
unsigned
int
i
;
...
...
@@ -688,7 +688,7 @@ static void client_write_deferred(struct client *client)
}
}
int
interfacePrintWithFD
(
int
fd
,
const
char
*
buffer
,
size_t
buflen
)
int
client_print
(
int
fd
,
const
char
*
buffer
,
size_t
buflen
)
{
static
unsigned
int
i
;
size_t
copylen
;
...
...
src/client.h
View file @
c0197c58
...
...
@@ -21,12 +21,12 @@
#include "os_compat.h"
void
initInterfaces
(
void
);
void
openAInterface
(
int
fd
,
const
struct
sockaddr
*
addr
);
void
freeAllInterfaces
(
void
);
void
cl
oseOldInterfaces
(
void
);
int
interfacePrintWithFD
(
int
fd
,
const
char
*
buffer
,
size_t
len
);
void
client_manager_init
(
void
);
void
client_new
(
int
fd
,
const
struct
sockaddr
*
addr
);
void
client_manager_deinit
(
void
);
void
cl
ient_manager_expire
(
void
);
int
client_print
(
int
fd
,
const
char
*
buffer
,
size_t
len
);
int
doIOForInterfaces
(
void
);
int
client_manager_io
(
void
);
#endif
src/directory.c
View file @
c0197c58
...
...
@@ -177,7 +177,7 @@ int updateInit(int fd, List * pathList)
finishSigHandlers
();
closeAllListenSockets
();
freeAllInterfaces
();
client_manager_deinit
();
finishPlaylist
();
finishVolume
();
...
...
src/listen.c
View file @
c0197c58
...
...
@@ -297,7 +297,7 @@ void getConnections(fd_set * fds)
if
(
FD_ISSET
(
listenSockets
[
i
],
fds
))
{
if
((
fd
=
accept
(
listenSockets
[
i
],
&
sockAddr
,
&
socklen
))
>=
0
)
{
openAInterface
(
fd
,
&
sockAddr
);
client_new
(
fd
,
&
sockAddr
);
}
else
if
(
fd
<
0
&&
(
errno
!=
EAGAIN
&&
errno
!=
EINTR
))
{
ERROR
(
"Problems accept()'ing
\n
"
);
...
...
src/main.c
View file @
c0197c58
...
...
@@ -422,7 +422,7 @@ int main(int argc, char *argv[])
initAudioConfig
();
initAudioDriver
();
initVolume
();
initInterfaces
();
client_manager_init
();
initReplayGainState
();
initNormalization
();
initInputStream
();
...
...
@@ -441,17 +441,17 @@ int main(int argc, char *argv[])
player_create
();
read_state_file
();
while
(
COMMAND_RETURN_KILL
!=
doIOForInterfaces
()
&&
while
(
COMMAND_RETURN_KILL
!=
client_manager_io
()
&&
COMMAND_RETURN_KILL
!=
handlePendingSignals
())
{
syncPlayerAndPlaylist
();
cl
oseOldInterfaces
();
cl
ient_manager_expire
();
readDirectoryDBIfUpdateIsFinished
();
}
write_state_file
();
playerKill
();
finishZeroconf
();
freeAllInterfaces
();
client_manager_deinit
();
closeAllListenSockets
();
finishPlaylist
();
...
...
src/myfprintf.c
View file @
c0197c58
...
...
@@ -49,7 +49,7 @@ void vfdprintf(const int fd, const char *fmt, va_list args)
len
=
strlen
(
buf
);
if
(
fd
==
STDERR_FILENO
||
fd
==
STDOUT_FILENO
||
interfacePrintWithFD
(
fd
,
buf
,
len
)
<
0
)
client_print
(
fd
,
buf
,
len
)
<
0
)
blockingWrite
(
fd
,
buf
,
len
);
}
...
...
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