Skip to content

Commit

Permalink
Change qtradio server from napan.ca to napan.com
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn committed Apr 25, 2015
1 parent d805e42 commit a53f68d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions INSTALL
Expand Up @@ -12,8 +12,8 @@ without warranty of any kind.
Basic Installation
==================

Briefly, the shell commands `./configure; make; make install' should
configure, build, and install this package. The following
Briefly, the shell command `./configure && make && make install'
should configure, build, and install this package. The following
more-detailed instructions are generic; see the `README' file for
instructions specific to this package. Some packages provide this
`INSTALL' file but do not implement all of the features documented
Expand Down
2 changes: 1 addition & 1 deletion trunk/src/QtRadio/UI.cpp
Expand Up @@ -2422,7 +2422,7 @@ void UI::printWindowTitle(QString message)
}
setWindowTitle("QtRadio - Server: " + servername + " " + configure.getHost() + "(Rx "
+ QString::number(configure.getReceiver()) +") .. "
+ getversionstring() + message + " [" + QString("Qt: %1").arg(QT_VERSION, 0, 16) + "] 21 May 2014"); // KD0OSS Fixed Qt version format
+ getversionstring() + message + " [" + QString("Qt: %1").arg(QT_VERSION, 0, 16) + "] 24 Apr 2015"); // KD0OSS Fixed Qt version format
lastmessage = message;
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/src/QtRadio/servers.cpp
Expand Up @@ -68,7 +68,7 @@ void Servers::on_closebutton_clicked()
void Servers::refreshList()
{
ui->treelist->clear();
QUrl url("http://qtradio.napan.ca/qtradio/qtradiolist.pl");
QUrl url("http://napan.com/qtradio/qtradiolist.pl");
QNetworkReply* reply = nam->get(QNetworkRequest(url));
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/src/dspserver/main.c
Expand Up @@ -79,7 +79,7 @@
*
*/

const char *version = "20131230;-master"; //YYYYMMDD; text desc
const char *version = "20150424;-master"; //YYYYMMDD; text desc

// main.c

Expand Down
8 changes: 4 additions & 4 deletions trunk/src/dspserver/register.c
Expand Up @@ -68,7 +68,7 @@ void *doReg(){
while(1){
sem_wait(&status_sem);
len = snprintf(sCmd, sizeof(sCmd),
"wget -q -O - --post-data 'call=%s&location=%s&band=%s&rig=%s&ant=%s&status=%s' http://qtradio.napan.ca/qtradio/qtradioreg.pl",
"wget -q -O - --post-data 'call=%s&location=%s&band=%s&rig=%s&ant=%s&status=%s' http://napan.com/qtradio/qtradioreg.pl",
call, location, band, rig, ant, dspstatus);
sem_post(&status_sem);
if (len > sizeof(sCmd)) {
Expand Down Expand Up @@ -102,7 +102,7 @@ void init_register(const char *scfile){
fprintf(file,"%s\n","# default file is located at ~/dspserver.conf when dsp server is started with --share");
fprintf(file,"%s\n","# The information below will be supplied to a web database which will aid QtRadio");
fprintf(file,"%s\n","# users find active dspservers to connect to. You may also see the current list at");
fprintf(file,"%s\n","# http://napan.ca/qtradio/qtradio.pl");
fprintf(file,"%s\n","# http://napan.com/qtradio.pl");
fprintf(file,"%s\n","# valid fields are call, location, band, rig and ant");
fprintf(file,"%s\n","# lines must end with ; and any characters after a # is a comment and ignored");
fprintf(file,"%s\n","# field values must be enclosed with \" ie: \"xxxx\"");
Expand Down Expand Up @@ -223,7 +223,7 @@ void *doUpdate(void *arg){
char sCmd[DSP_CMD_BUFSIZE];

if (snprintf(sCmd, sizeof(sCmd),
"wget -q -O - --post-data 'call=%s&location=%s&band=%s&rig=%s&ant=%s&status=%s' http://qtradio.napan.ca/qtradio/qtradioreg.pl",
"wget -q -O - --post-data 'call=%s&location=%s&band=%s&rig=%s&ant=%s&status=%s' http://napan.com/qtradio/qtradioreg.pl",
call, location, band, rig, ant,(char *)arg) > sizeof(sCmd)) {
sdr_log(SDR_LOG_ERROR, "Registration string was too long\n");
return NULL;
Expand Down Expand Up @@ -254,7 +254,7 @@ void doRemove(){
int result;
char sCmd[DSP_CMD_BUFSIZE];
if (snprintf(sCmd, sizeof(sCmd),
"wget -q -O - --post-data 'call=%s&location=%s&band=%s&rig=%s&ant=%s&status=Down' http://qtradio.napan.ca/qtradio/qtradioreg.pl",
"wget -q -O - --post-data 'call=%s&location=%s&band=%s&rig=%s&ant=%s&status=Down' http://napan.com/qtradio/qtradioreg.pl",
call, location, band, rig, ant) > sizeof(sCmd)) {
sdr_log(SDR_LOG_ERROR, "Registration string was too long\n");
return;
Expand Down
4 changes: 2 additions & 2 deletions trunk/src/perseus/INSTALL
Expand Up @@ -12,8 +12,8 @@ without warranty of any kind.
Basic Installation
==================

Briefly, the shell commands `./configure; make; make install' should
configure, build, and install this package. The following
Briefly, the shell command `./configure && make && make install'
should configure, build, and install this package. The following
more-detailed instructions are generic; see the `README' file for
instructions specific to this package. Some packages provide this
`INSTALL' file but do not implement all of the features documented
Expand Down
4 changes: 2 additions & 2 deletions trunk/src/usrp/INSTALL
Expand Up @@ -12,8 +12,8 @@ without warranty of any kind.
Basic Installation
==================

Briefly, the shell commands `./configure; make; make install' should
configure, build, and install this package. The following
Briefly, the shell command `./configure && make && make install'
should configure, build, and install this package. The following
more-detailed instructions are generic; see the `README' file for
instructions specific to this package. Some packages provide this
`INSTALL' file but do not implement all of the features documented
Expand Down

0 comments on commit a53f68d

Please sign in to comment.