Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Synching fork with upstream #8

Merged
merged 41 commits into from
May 17, 2020
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
eb204eb
Test for devtree
N4IRS Apr 17, 2018
aea58d5
Update net-setup
n8thn Apr 21, 2018
5648d5a
Update set-host
n8thn Apr 21, 2018
c26ce81
Update asl-menu
n8thn May 4, 2018
1f3a378
Update net-setup
n8thn May 4, 2018
f37f135
Update asl-menu
n8thn Oct 16, 2018
c5b8abe
Update asl-menu
n8thn Oct 16, 2018
a2d06fa
Merge pull request #42 from AllStarLink/develop
allstarlink1 Nov 22, 2018
d9efad4
Updated
allstarlink1 Nov 22, 2018
7ef7bee
Delete README
allstarlink1 Nov 22, 2018
e2ca6bf
Created README.md
allstarlink1 Nov 22, 2018
651bffc
Update README.md
allstarlink1 Nov 22, 2018
9ab6b42
Update README.md
allstarlink1 Nov 22, 2018
94a17a1
Update README.md
allstarlink1 Nov 22, 2018
567a268
Update README.md
allstarlink1 Nov 22, 2018
d0e3fe5
Update README.md
allstarlink1 Nov 22, 2018
5ab991d
Update README.md
allstarlink1 Nov 22, 2018
464b79c
Update README.md
KG7QIN Nov 22, 2018
99bf31e
Update LICENSE
KG7QIN Nov 22, 2018
f5c6066
Create stale.yml
KG7QIN Apr 30, 2020
1670347
Update stale.yml
KG7QIN Apr 30, 2020
7e725f9
Update issue templates
KG7QIN May 1, 2020
67da333
Create PULL_REQUEST_TEMPLATE.md
KG7QIN May 1, 2020
abb08de
ASL version 1.02 - Refer to CHANGELOG.md for listing of changes made.…
KG7QIN May 12, 2020
d99751d
Merge pull request #54 from AllStarLink/develop
KG7QIN May 12, 2020
ae2984d
Update README.md
KG7QIN May 12, 2020
75980ed
Update mdc_encode.h
KG7QIN May 12, 2020
e4b3298
A few additional memory checks.
KG7QIN May 12, 2020
a0b7af1
Fixed issue with pubip node = 0
KG7QIN May 12, 2020
3b22bda
Added examples for new statpost and [globals] section
KG7QIN May 12, 2020
2631d2e
A fix for statpost, and increase the timeout for libcurl
KG7QIN May 12, 2020
ac40199
Update version info
KG7QIN May 12, 2020
78d6308
Fixed libcurl agent issue
KG7QIN May 12, 2020
ab1e90b
Update AUTHORS.md
KG7QIN May 12, 2020
1cd156a
Fixed formatting
KG7QIN May 12, 2020
72a9143
Fixed formatting
KG7QIN May 12, 2020
365faed
Fixes for remote ip
KG7QIN May 13, 2020
15fe114
Statpost updates. Fixed some memory issues
KG7QIN May 14, 2020
e2692c7
Added System ID. Fixed bootstrap envrionment adding in dependency che…
KG7QIN May 17, 2020
3937372
Forgot to include updated bootstrap.sh file.
KG7QIN May 17, 2020
c288ec0
You will need to run ./bootstrap.sh now to rebuild autoconf envrionme…
KG7QIN May 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed libcurl agent issue
Signed-off-by: Stacy Olivas <[email protected]>
  • Loading branch information
KG7QIN committed May 12, 2020
commit 78d6308a204e44c3d26ed9e3eb076de6a4518567
4 changes: 2 additions & 2 deletions asterisk/apps/app_rpt.c
Original file line number Diff line number Diff line change
Expand Up @@ -2045,10 +2045,10 @@ static int curl_internal(struct MemoryStruct *chunk, char *url, char *post)
return -1;

skzy = strstr(tdesc, "version");
sprintf(curl_agent_string, "%s (-; Linux %s; gcc %s)",crl_agnt,sysinfo.cvers, __VERSION__);
sprintf(curl_agent_string, "%s (-; Linux %s)",crl_agnt,sysinfo.cvers);
if(skzy)
if(sscanf(skzy, "version %d.%d", &vmajor, &vminor) == 2)
sprintf(curl_agent_string, "%s (app_rpt v%d.%d; Linux %s; gcc %s)",crl_agnt,vmajor,vminor,sysinfo.cvers, __VERSION__);
sprintf(curl_agent_string, "%s (app_rpt v%d.%d; Linux %s)",crl_agnt,vmajor,vminor,sysinfo.cvers);

curl_easy_setopt(*curl, CURLOPT_NOSIGNAL, 1);

Expand Down