ChangeLog 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. Revision 0.21: Uses the new generic socket option code.
  2. Revision 0.22: Gcc clean ups and drop out device registration. Use the
  3. new multi-protocol edition of hard_header
  4. Revision 0.23: IPX /proc by Mark Evans. Adding a route will
  5. will overwrite any existing route to the same network.
  6. Revision 0.24: Supports new /proc with no 4K limit
  7. Revision 0.25: Add ephemeral sockets, passive local network
  8. identification, support for local net 0 and
  9. multiple datalinks <Greg Page>
  10. Revision 0.26: Device drop kills IPX routes via it. (needed for module)
  11. Revision 0.27: Autobind <Mark Evans>
  12. Revision 0.28: Small fix for multiple local networks <Thomas Winder>
  13. Revision 0.29: Assorted major errors removed <Mark Evans>
  14. Small correction to promisc mode error fix <Alan Cox>
  15. Asynchronous I/O support. Changed to use notifiers
  16. and the newer packet_type stuff. Assorted major
  17. fixes <Alejandro Liu>
  18. Revision 0.30: Moved to net/ipx/... <Alan Cox>
  19. Don't set address length on recvfrom that errors.
  20. Incorrect verify_area.
  21. Revision 0.31: New sk_buffs. This still needs a lot of
  22. testing. <Alan Cox>
  23. Revision 0.32: Using sock_alloc_send_skb, firewall hooks. <Alan Cox>
  24. Supports sendmsg/recvmsg
  25. Revision 0.33: Internal network support, routing changes, uses a
  26. protocol private area for ipx data.
  27. Revision 0.34: Module support. <Jim Freeman>
  28. Revision 0.35: Checksum support. <Neil Turton>, hooked in by <Alan Cox>
  29. Handles WIN95 discovery packets <Volker Lendecke>
  30. Revision 0.36: Internal bump up for 2.1
  31. Revision 0.37: Began adding POSIXisms.
  32. Revision 0.38: Asynchronous socket stuff made current.
  33. Revision 0.39: SPX interfaces
  34. Revision 0.40: Tiny SIOCGSTAMP fix (chris@cybernet.co.nz)
  35. Revision 0.41: 802.2TR removed (p.norton@computer.org)
  36. Fixed connecting to primary net,
  37. Automatic binding on send & receive,
  38. Martijn van Oosterhout <kleptogimp@geocities.com>
  39. Revision 042: Multithreading - use spinlocks and refcounting to
  40. protect some structures: ipx_interface sock list, list
  41. of ipx interfaces, etc.
  42. Bugfixes - do refcounting on net_devices, check function
  43. results, etc. Thanks to davem and freitag for
  44. suggestions and guidance.
  45. Arnaldo Carvalho de Melo <acme@conectiva.com.br>,
  46. November, 2000
  47. Revision 043: Shared SKBs, don't mangle packets, some cleanups
  48. Arnaldo Carvalho de Melo <acme@conectiva.com.br>,
  49. December, 2000
  50. Revision 044: Call ipxitf_hold on NETDEV_UP - acme
  51. Revision 045: fix PPROP routing bug - acme
  52. Revision 046: Further fixes to PPROP, ipxitf_create_internal was
  53. doing an unneeded MOD_INC_USE_COUNT, implement
  54. sysctl for ipx_pprop_broacasting, fix the ipx sysctl
  55. handling, making it dynamic, some cleanups, thanks to
  56. Petr Vandrovec for review and good suggestions. (acme)
  57. Revision 047: Cleanups, CodingStyle changes, move the ncp connection
  58. hack out of line - acme
  59. Revision 048: Use sk->protinfo to store the pointer to IPX private
  60. area, remove af_ipx from sk->protinfo and move ipx_opt
  61. to include/net/ipx.h, use IPX_SK like DecNET, etc - acme
  62. Revision 049: SPX support dropped, see comment in ipx_create - acme
  63. Revision 050: Use seq_file for proc stuff, moving it to ipx_proc.c - acme
  64. Other fixes:
  65. Protect the module by a MOD_INC_USE_COUNT/MOD_DEC_USE_COUNT pair. Also, now
  66. usage count is managed this way:
  67. -Count one if the auto_interface mode is on
  68. -Count one per configured interface
  69. Jacques Gelinas (jacques@solucorp.qc.ca)