Age | Commit message (Expand) | Author |
2014-09-24 | Cancel pending transfers | sin |
2014-09-24 | Style fix for comments | sin |
2014-09-24 | Add support for receiving files | sin |
2014-09-23 | Cancel transfer first, then remove files (we need the fd) | sin |
2014-09-23 | Post a KILL when cancelling transfers | sin |
2014-09-23 | Remove useless { } | sin |
2014-09-23 | Cancel transfers properly | sin |
2014-09-23 | We need to force TCP mode when using the proxy | sin |
2014-09-23 | Add proxy support...(Remove tcpenabled from config.def.h as it can easily be flipped
at runtime via the cmdline switch).
| sin |
2014-09-23 | Add TCP mode | sin |
2014-09-23 | Refactor data-structures | FRIGN |
2014-09-23 | Scream if the datafile has 0 length | sin |
2014-09-23 | Add frienddestroy() and refactor removefriend()...friendcreate() populates the fs, frienddestroy() removes the
friend related files from the fs.
removefriend() only acts on the data from the friend's remove
fifo. The "callback" in this case is responsible for reading the
fifo like in all other cases (sendfriendtext() etc.).
No weird dance with special function arguments to flag "official"
removal. All friend related "callbacks" just need to operate on
a struct friend *.
| sin |
2014-09-22 | Use fsync() on fd in datasave() | sin |
2014-09-22 | Refactor removefriend() | FRIGN |
2014-09-22 | Add support for removing friends | sin |
2014-09-22 | Dump our status message in the status/out file not our nickname | sin |
2014-09-22 | Use number of seconds since epoch as a timestamp for naming files uniquely...This breaks if time travel becomes a possibility.
| sin |
2014-09-22 | Use O_RDONLY when opening the datafile | sin |
2014-09-22 | Remeber to truncate datafile in datasave() in case it shrinks | sin |
2014-09-22 | Change datasave() and localinit() to use fd's instead of fp's | FRIGN |
2014-09-22 | Print message before password prompt | sin |
2014-09-22 | Refactor dataload()...Use fd's instead of fp's and simplify the case-handling for encryption.
| FRIGN |
2014-09-22 | Refactor fifoflush()...After the previous simplification of return-values of fiforead()
(exit if there's a more serious issue), fifoflush() can easily
be replaced with a oneliner calling fiforead until it returns 0.
In case 0 is returned, the underlying fifo will have already been
reopened.
| FRIGN |
2014-09-22 | Style fix | sin |
2014-09-22 | Rename encryptsave to encryptdatafile | sin |
2014-09-22 | Allow to encrypt a plain text data file and vice versa | sin |
2014-09-22 | Inform the user if encryption is enabled but the datafile is not encrypted | sin |
2014-09-22 | Print a newline between the banner and the rest | sin |
2014-09-22 | Allow a client with encrypted support to load non-encrypt datafiles | sin |
2014-09-22 | Just realloc(), don't leak if we get called more than once | sin |
2014-09-22 | Oops | sin |
2014-09-22 | Just check p[0] | sin |
2014-09-22 | Forbid empty passwords, keep looping | sin |
2014-09-22 | Make sure to report when .ratox.data doesn't match our encryption config | sin |
2014-09-22 | Keep asking for password if it doesn't match | sin |
2014-09-22 | Add support for encrypted save files | sin |
2014-09-21 | Add IPv6 support...Default to IPv4.
| sin |
2014-09-21 | Lay the ground for IPv6 support | sin |
2014-09-21 | Update nodelist | sin |
2014-09-21 | Only close file descriptors when they are not -1 | sin |
2014-09-21 | Add shutdown() for clean exit...This also sends a broadcast to all friends you went offline,
leading to an immediate event-feedback.
| FRIGN |
2014-09-20 | fiforead() should accept a void * instead of char *...Remove ugly casts.
| sin |
2014-09-20 | Fix off-by-one bugs when calling fiforead()...dirfd should be the first arg to be consistent with other
functions.
| sin |
2014-09-20 | Refactor sendfriendreq()...Put the error-strings in one single data-structure and flush the err-file
every time before a new incoming request, so it's empty when the request
succeeds.
| FRIGN |
2014-09-20 | Implement fiforead()...fiforead() automatically reopens a file-descriptor in case
it returns EOF (return 0).
It returns -1 on error.
| FRIGN |
2014-09-19 | Initialize fdmax | sin |
2014-09-19 | Factor out fifoflush() in a separate func...Also flush the fifo for stalled transfers
| sin |
2014-09-19 | Clear up the enums and fix implicit condition-bug...The OUT_F-type was not clear. Make it easier to see the out-file
has no state (=NONE) and is defined for each slot individually.
Moreover, in the initial creation, the err-file fell through
just because STATIC = 0 and .outfile wasn't defined for it.
It was only coincidence this worked and now we have a much
more bulletproof implementation.
| FRIGN |
2014-09-19 | Handle rejected transfers | sin |