diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-08-13 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-08-13 18:00:00 +0200 |
commit | f5ad8fc5d7679433faf6a7465b5cfd54a7c10f8b (patch) | |
tree | 3a96e6b94455356b9844f25a6d091832ef501546 /svdrp.c | |
parent | 33f1491b18c201ecda4ff2c34f606d9f5f041489 (diff) | |
download | vdr-patch-lnbsharing-f5ad8fc5d7679433faf6a7465b5cfd54a7c10f8b.tar.gz vdr-patch-lnbsharing-f5ad8fc5d7679433faf6a7465b5cfd54a7c10f8b.tar.bz2 |
Version 1.4.1-4vdr-1.4.1-4
- Fixed converting the port number in the "connect from..." log message of SVDRP
(thanks to Ville Skyttä).
- Made the cCiSession members sessionId and resourceId uint16_t and uint32_t,
respectively, to match their types in the CI session data (thanks to Ville Skyttä
for reporting that there are places where ntohs() is assigned to different types).
- Changed the way a device is selected for receiving in order to keep devices with
CAMs better available, even if this means recording on the primary device (reported
by Jörn Reder; thanks to Anssi Hannula for improving handling Transfer Mode devices
in this).
- No longer stopping removing empty directories if an error occurs (thanks to
Oliver Endriss).
- Added a log error message to cPlugin::ConfigDirectory() in case a plugin calls it
from a separate thread (reported by Udo Richter).
Diffstat (limited to 'svdrp.c')
-rw-r--r-- | svdrp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,7 +10,7 @@ * and interact with the Video Disk Recorder - or write a full featured * graphical interface that sits on top of an SVDRP connection. * - * $Id: svdrp.c 1.99 2006/08/06 09:17:58 kls Exp $ + * $Id: svdrp.c 1.100 2006/08/12 09:09:55 kls Exp $ */ #include "svdrp.h" @@ -120,7 +120,7 @@ int cSocket::Accept(void) close(newsock); newsock = -1; } - isyslog("connect from %s, port %hd - %s", inet_ntoa(clientname.sin_addr), ntohs(clientname.sin_port), accepted ? "accepted" : "DENIED"); + isyslog("connect from %s, port %hu - %s", inet_ntoa(clientname.sin_addr), ntohs(clientname.sin_port), accepted ? "accepted" : "DENIED"); } else if (errno != EINTR && errno != EAGAIN) LOG_ERROR; |