summaryrefslogtreecommitdiff
path: root/frontends/monkey/main.c
Commit message (Collapse)AuthorAgeFilesLines
* monkey: Catch some signals and backtraceDaniel Silverstone2020-04-251-0/+32
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* monkey: Enable disc cache optionally on monkeyDaniel Silverstone2020-02-241-0/+2
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* limit monkey backtrace generation to libc where it is availableVincent Sanders2020-01-111-2/+4
|
* monkey: On assert failure, print a backtraceDaniel Silverstone2020-01-101-0/+23
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* remove warning callback from miscelaneous function tableVincent Sanders2019-11-111-1/+0
|
* Monkey: Clean up various leaked blocksDaniel Silverstone2019-09-071-0/+9
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* monkey: Report the errno when select() returns -1Daniel Silverstone2019-08-021-0/+2
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* monkey: Run scheduler before extracting fdsetsDaniel Silverstone2019-08-021-3/+3
| | | | | | | We need to run the scheduler *before* we extract the fdsets from the fetchers, otherwise fetch aborts might result in EBADF Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* add certificate window handlingVincent Sanders2018-11-041-0/+6
|
* add 401 login handling to monkey frontendVincent Sanders2018-11-031-0/+5
|
* centralise monkey output generationVincent Sanders2018-11-031-7/+8
|
* Finalise nslog layer properly in closedownDaniel Silverstone2017-09-101-0/+3
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* Add ability to set options in monkeyDaniel Silverstone2017-06-101-1/+11
|
* Look for resources in useful folder nameDaniel Silverstone2017-06-101-1/+1
|
* Reflow monkey code, it was annoying me too muchDaniel Silverstone2017-06-101-237/+236
|
* Include time in GENERIC POLL TIMEDDaniel Silverstone2017-06-101-1/+1
|
* Move fetcher_fdset to fetch.h (and rename to fetch_fdset). Maybe not ideal ↵Daniel Silverstone2016-06-271-2/+2
| | | | but better
* msplit public url database API out for frontendsVincent Sanders2016-06-131-1/+2
|
* reduce usage of content headers by monkey frontendVincent Sanders2016-06-061-4/+4
|
* move netsurf header into public APIVincent Sanders2016-05-301-1/+1
|
* move misc header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+398