Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-07-14 | Replace std::vector into macro STD_VECTOR. | Andrei Karas | 1 | -1/+1 | |
In most case it equal to std::vector except debug modes. Now it can be also mse::mstd::vector, but sadly this class not support all required features. | |||||
2017-07-13 | Add vector.h for use different vectors. | Andrei Karas | 1 | -1/+2 | |
Also replace <vector> include into "utils/vector.h" | |||||
2017-05-07 | Add possible SDL warning fix with gcc snapshot. | Andrei Karas | 1 | -3/+3 | |
2017-01-03 | Update copyright year. | Andrei Karas | 1 | -1/+1 | |
2016-05-01 | Guard include sdltcpnet.h with pragma in all files. | Andrei Karas | 1 | -0/+5 | |
2016-01-02 | Update copyrights year. | Andrei Karas | 1 | -1/+1 | |
2015-03-17 | Remove useless includes from .h files. | Andrei Karas | 1 | -2/+0 | |
2015-01-01 | Update copyrights year. | Andrei Karas | 1 | -1/+1 | |
2014-08-01 | Fix code style. | Andrei Karas | 1 | -3/+3 | |
2014-07-29 | Use thread safe way for ipc interaction. | Andrei Karas | 1 | -0/+8 | |
2014-07-28 | Fix formatting in net files. | Andrei Karas | 1 | -24/+24 | |
2014-07-19 | Reorder variables in ipc. | Andrei Karas | 1 | -2/+2 | |
2014-07-19 | In ipc add copy protection. | Andrei Karas | 1 | -0/+2 | |
2014-07-19 | In ipc code replace SLD_net into tcpnet. | Andrei Karas | 1 | -1/+2 | |
2014-07-19 | Fix memory leak with ipc port selection. | Andrei Karas | 1 | -0/+3 | |
2014-07-19 | Fix different style issues in ipc code. | Andrei Karas | 1 | -5/+10 | |
2014-07-19 | fix warnings from mplint | Vincent Petithory | 1 | -1/+1 | |
2014-07-19 | IPC: fix copyright | Vincent Petithory | 1 | -1/+1 | |
2014-07-19 | Add IPC: | Vincent Petithory | 1 | -0/+56 | |
Manaplus now accepts connections on the 44007 port. * Uses SDL_Net/SDL_Thread. * Port can be changed with envvar IPC_PORT. * Default port is first checked then incremented until one is available. * start on demand with /ipctoggle (shuts down server socket) It has a simple text protocol: TYPE arg1 [args]... Message types: * CMD: execs a command supported by manaplus, e.g /emote * LTALK: talks in general tab * TALK: talks in current focused tab * [TODO] KEY: do as if the KEY was pressed on keyboard |