From d39c2fd8a275eab5d9df5be2920261bb761d9034 Mon Sep 17 00:00:00 2001 From: cyanide-burnout Date: Mon, 25 Jul 2016 11:46:59 +0400 Subject: [PATCH] Fixed issues with building Debian package --- CronosAgent.c | 14 +++++++++++++- Rewind.h | 6 +++--- UpdateLog.sh | 8 ++++---- cronosagent.sh | 4 ++-- debian/changelog | 6 +++--- debian/control | 2 +- 6 files changed, 26 insertions(+), 14 deletions(-) diff --git a/CronosAgent.c b/CronosAgent.c index f1a9794..f76cfbc 100644 --- a/CronosAgent.c +++ b/CronosAgent.c @@ -539,6 +539,13 @@ int main(int argc, const char* argv[]) continue; } + if (type == REWIND_TYPE_ADDRESS_NOTICE) + { + socketOptionValue = false; + setsockopt(remoteHandle, IPPROTO_IP, IP_PKTINFO, &socketOptionValue, sizeof(socketOptionValue)); + continue; + } + if (type == REWIND_TYPE_REPORT) { incomingBuffer->data[length] = '\0'; @@ -726,7 +733,7 @@ int main(int argc, const char* argv[]) data->number = htole32(repeaterNumber); data->service = REWIND_SERVICE_CRONOS_AGENT; - length += sprintf(data->version, "CronosAgent " STRING(VERSION) " " BUILD); + length += sprintf(data->description, "CronosAgent " STRING(VERSION) " " BUILD); outgoingBuffer->type = htole16(REWIND_TYPE_KEEP_ALIVE); outgoingBuffer->flags = htole16(REWIND_FLAG_DEFAULT_SET); @@ -769,6 +776,11 @@ int main(int argc, const char* argv[]) running = false; break; } + + // SIGHUP + + socketOptionValue = true; + setsockopt(remoteHandle, IPPROTO_IP, IP_PKTINFO, &socketOptionValue, sizeof(socketOptionValue)); } } } diff --git a/Rewind.h b/Rewind.h index 09373ca..0bf23b2 100644 --- a/Rewind.h +++ b/Rewind.h @@ -53,9 +53,9 @@ extern "C" struct RewindVersionData { - uint32_t number; // Remote ID - uint8_t service; // REWIND_SERVICE_* - char version[0]; // Software version + uint32_t number; // Remote ID + uint8_t service; // REWIND_SERVICE_* + char description[0]; // Software name and version }; struct RewindAddressData diff --git a/UpdateLog.sh b/UpdateLog.sh index 881eb2c..6382212 100755 --- a/UpdateLog.sh +++ b/UpdateLog.sh @@ -2,14 +2,14 @@ FILE=$(mktemp) VERSION=(grep -o -E "[0-9]+" Version.h) -DATE=$(date +"%a, %d %b %a %H:%M:%S %z") +DATE=$(date +"%a, %d %b %Y %H:%M:%S %z") -echo "cronosagent ${VERSION} none; urgency=low" >> ${FILE} +echo "cronosagent (${VERSION}) none; urgency=low" >> ${FILE} echo >> ${FILE} -echo "* Daily build" >> ${FILE} +echo " * Daily build" >> ${FILE} echo >> ${FILE} echo " -- Artem Prilutskiy ${DATE}" >> ${FILE} echo >> ${FILE} -test -f debian/changelog && cat debian/changelog >> ${FILE} +# test -f debian/changelog && cat debian/changelog >> ${FILE} mv ${FILE} debian/changelog diff --git a/cronosagent.sh b/cronosagent.sh index 1e0c3f0..ce0590a 100755 --- a/cronosagent.sh +++ b/cronosagent.sh @@ -1,8 +1,8 @@ #!/bin/bash -REPEATER_NUMBER=250304 +REPEATER_NUMBER=123456 REPEATER_ADDRESS=172.33.20.136 -SERVER_ADDRESS=aesyle.dstar.su +SERVER_ADDRESS=master.dstar.su SERVER_PASSWORD=passw0rd SERVICE_MODE=1 diff --git a/debian/changelog b/debian/changelog index ea93e6b..ed36b4b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ -cronosagent grep none; urgency=low +cronosagent (grep) none; urgency=low -* Daily build + * Daily build - -- Artem Prilutskiy пт, 08 июл пт 18:19:40 +0300 + -- Artem Prilutskiy Mon, 25 Jul 2016 11:44:12 +0400 diff --git a/debian/control b/debian/control index 26f0269..a6fe1b9 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: unknown Priority: extra Maintainer: Artem Prilutskiy Build-Depends: - debhelper (>= 5), libconfig-dev (>= 1.3), libssl-dev + debhelper (>= 5), libssl-dev Standards-Version: 3.8.4 Package: cronosagent