Fixed issues with building Debian package
This commit is contained in:
parent
9094b61931
commit
d39c2fd8a2
6 changed files with 26 additions and 14 deletions
|
@ -539,6 +539,13 @@ int main(int argc, const char* argv[])
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (type == REWIND_TYPE_ADDRESS_NOTICE)
|
||||||
|
{
|
||||||
|
socketOptionValue = false;
|
||||||
|
setsockopt(remoteHandle, IPPROTO_IP, IP_PKTINFO, &socketOptionValue, sizeof(socketOptionValue));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (type == REWIND_TYPE_REPORT)
|
if (type == REWIND_TYPE_REPORT)
|
||||||
{
|
{
|
||||||
incomingBuffer->data[length] = '\0';
|
incomingBuffer->data[length] = '\0';
|
||||||
|
@ -726,7 +733,7 @@ int main(int argc, const char* argv[])
|
||||||
|
|
||||||
data->number = htole32(repeaterNumber);
|
data->number = htole32(repeaterNumber);
|
||||||
data->service = REWIND_SERVICE_CRONOS_AGENT;
|
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->type = htole16(REWIND_TYPE_KEEP_ALIVE);
|
||||||
outgoingBuffer->flags = htole16(REWIND_FLAG_DEFAULT_SET);
|
outgoingBuffer->flags = htole16(REWIND_FLAG_DEFAULT_SET);
|
||||||
|
@ -769,6 +776,11 @@ int main(int argc, const char* argv[])
|
||||||
running = false;
|
running = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SIGHUP
|
||||||
|
|
||||||
|
socketOptionValue = true;
|
||||||
|
setsockopt(remoteHandle, IPPROTO_IP, IP_PKTINFO, &socketOptionValue, sizeof(socketOptionValue));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
6
Rewind.h
6
Rewind.h
|
@ -53,9 +53,9 @@ extern "C"
|
||||||
|
|
||||||
struct RewindVersionData
|
struct RewindVersionData
|
||||||
{
|
{
|
||||||
uint32_t number; // Remote ID
|
uint32_t number; // Remote ID
|
||||||
uint8_t service; // REWIND_SERVICE_*
|
uint8_t service; // REWIND_SERVICE_*
|
||||||
char version[0]; // Software version
|
char description[0]; // Software name and version
|
||||||
};
|
};
|
||||||
|
|
||||||
struct RewindAddressData
|
struct RewindAddressData
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
|
|
||||||
FILE=$(mktemp)
|
FILE=$(mktemp)
|
||||||
VERSION=(grep -o -E "[0-9]+" Version.h)
|
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 >> ${FILE}
|
||||||
echo "* Daily build" >> ${FILE}
|
echo " * Daily build" >> ${FILE}
|
||||||
echo >> ${FILE}
|
echo >> ${FILE}
|
||||||
echo " -- Artem Prilutskiy <cyanide.burnout@gmail.com> ${DATE}" >> ${FILE}
|
echo " -- Artem Prilutskiy <cyanide.burnout@gmail.com> ${DATE}" >> ${FILE}
|
||||||
echo >> ${FILE}
|
echo >> ${FILE}
|
||||||
|
|
||||||
test -f debian/changelog && cat debian/changelog >> ${FILE}
|
# test -f debian/changelog && cat debian/changelog >> ${FILE}
|
||||||
mv ${FILE} debian/changelog
|
mv ${FILE} debian/changelog
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
REPEATER_NUMBER=250304
|
REPEATER_NUMBER=123456
|
||||||
REPEATER_ADDRESS=172.33.20.136
|
REPEATER_ADDRESS=172.33.20.136
|
||||||
SERVER_ADDRESS=aesyle.dstar.su
|
SERVER_ADDRESS=master.dstar.su
|
||||||
SERVER_PASSWORD=passw0rd
|
SERVER_PASSWORD=passw0rd
|
||||||
SERVICE_MODE=1
|
SERVICE_MODE=1
|
||||||
|
|
||||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,6 +1,6 @@
|
||||||
cronosagent grep none; urgency=low
|
cronosagent (grep) none; urgency=low
|
||||||
|
|
||||||
* Daily build
|
* Daily build
|
||||||
|
|
||||||
-- Artem Prilutskiy <cyanide.burnout@gmail.com> пт, 08 июл пт 18:19:40 +0300
|
-- Artem Prilutskiy <cyanide.burnout@gmail.com> Mon, 25 Jul 2016 11:44:12 +0400
|
||||||
|
|
||||||
|
|
2
debian/control
vendored
2
debian/control
vendored
|
@ -3,7 +3,7 @@ Section: unknown
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Maintainer: Artem Prilutskiy <cyanide.burnout@gmail.com>
|
Maintainer: Artem Prilutskiy <cyanide.burnout@gmail.com>
|
||||||
Build-Depends:
|
Build-Depends:
|
||||||
debhelper (>= 5), libconfig-dev (>= 1.3), libssl-dev
|
debhelper (>= 5), libssl-dev
|
||||||
Standards-Version: 3.8.4
|
Standards-Version: 3.8.4
|
||||||
|
|
||||||
Package: cronosagent
|
Package: cronosagent
|
||||||
|
|
Loading…
Add table
Reference in a new issue