Files
i2p.itoopie/apps/sam/c/doc/whatsnew.txt

53 lines
2.0 KiB
Plaintext
Raw Normal View History

2004-08-01 02:38:14 +00:00
/* vi:set ts=4: */
2004-08-27 01:29:18 +00:00
v1.30
2004-12-02 23:05:30 +00:00
* Added session to sam_namingback()
2004-12-02 22:54:22 +00:00
* Removed stdint.h dependency
2004-11-19 02:17:20 +00:00
* Improved WIRETAP to do more logging
2004-11-07 04:12:36 +00:00
* Added "pinger.sh" shell script example for using i2p-ping
2004-11-19 02:17:20 +00:00
* Added SAM_BAD_STYLE error
* Added exit values for i2p-ping from xolo
2004-08-27 01:29:18 +00:00
2004-08-01 06:25:56 +00:00
v1.25 2004-07-31
* Created I2P-Ping, a new example program (it's a clone of I2Ping). Works
on Posix only, because it uses getopt().
2004-08-01 02:38:14 +00:00
* Removed the old broken examples and added more comments to
warhammer-dgram.c
2004-07-31 01:36:51 +00:00
* Added support for sessions - now LibSAM can have multiple SAM sessions
going at once (with different destinations)
2004-07-28 04:50:44 +00:00
* Rewrote sendq functions to automatically send big packets, for better
2004-08-01 06:25:56 +00:00
network performance (still considered experimental)
2004-07-28 04:50:44 +00:00
2004-07-11 13:22:37 +00:00
v1.20 2004-07-11
* Ported to FreeBSD (Makefile.freebsd)
2004-06-27 13:07:06 +00:00
* Full winsock compatibility - all Windows functions now return appropriate
error strings
v1.15 2004-06-23
* Added a new example program, warhammer-dgram (use with caution)
2004-06-20 11:44:53 +00:00
* Fixed some fatal bugs in datagram handling
* Added another error return type named SAM_TOO_BIG - some functions now
2004-06-24 11:51:24 +00:00
return samerr_t instead of bool
2004-06-20 11:44:53 +00:00
v1.10 2004-06-16
* Changed sam_strerror() to work the same as the standard library strerror()
* Ported to native MS Windows (uses the Mingw development environment)
* Fixed a probable bug in the Cygwin port
v1.05 2004-06-09
* Added an example datagram client/server program in the examples directory
* sam_read_buffer() now returns bool true if it read anything
* Added repliable datagram support - sam_connect() now has another argument
* Replaced strstr() with the more appropriate strncmp() in many places
* Fixed a parsing error for STREAM CLOSED
* Removed the old sam_naming_lookup() and renamed sam_naming_lookup_async()
to sam_naming_lookup() to replace it
* Fixed a bug in sam_stream_close() where a '\n' was not being sent after
the SAM command
* Fixed a bug where the stream ID was being improperly incremented in
sam_stream_connect()
* Added generic Linux Makefile for non-Debian distributions
v1.00 2004-06-02
* First public release