Overview
Comment: | Basic communication and server starting working. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.6584-ck5 |
Files: | files | file ages | folders |
SHA1: |
eec8d1d26e394cf2fe6cbbadebad5b60 |
User & Date: | matt on 2021-05-14 06:30:52 |
Other Links: | branch diff | manifest | tags |
Context
2021-05-15
| ||
21:57 | wip check-in: db4714b500 user: matt tags: v1.6584-ck5 | |
2021-05-14
| ||
06:30 | Basic communication and server starting working. check-in: eec8d1d26e user: matt tags: v1.6584-ck5 | |
06:02 | wip check-in: 4fdbc16a0c user: matt tags: v1.6584-ck5 | |
Changes
Modified apimod.scm from [1fc312f537] to [fc2d6a4da7].
︙ | |||
403 404 405 406 407 408 409 | 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 | - + + - + - - - - + + - - - - - - - - - + - + | ;; api:process-request ;; db:* ;; ;; NB// Runs on the server as part of the server loop ;; (define (api:process-request dbstruct $) ;; the $ is the request vars proc (debug:print 0 *default-log-port* "server-id:" *server-id*) |
Modified fullrununit.sh from [9bd1a1d378] to [a13af07ac4].
1 2 3 | 1 2 3 4 5 6 | - - + + | #!/bin/bash (killall mtest -v;sleep 1;killall mtest -v -9;rm tests/simplerun/logs/*;rm tests/basicserver.log) & |
Modified rmtmod.scm from [b2d8ebc2ad] to [1bce58e61d].
︙ | |||
244 245 246 247 248 249 250 | 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | - + | (debug:print 0 *default-log-port* "remote: " remote) (if (not mainconn) (begin (rmt:open-main-connection remote apath) (thread-sleep! 1) (rmt:general-open-connection remote apath dbname)) ;; we have a connection to main, ask for contact info for dbname |
︙ |
Modified tests/unittests/basicserver.scm from [3c2174c06a] to [16c2075b66].
︙ | |||
23 24 25 26 27 28 29 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | - - + + - + - - - - + + + + - + | ;; ./rununittest.sh server 1;(cd simplerun;megatest -stop-server 0) (import rmtmod trace http-transportmod http-client apimod dbmod) (trace-call-sites #t) (trace ;; db:get-dbdat ;; rmt:find-main-server |
︙ |