Skip to content
  1. Oct 18, 2012
    • Antoine Millet's avatar
      Fixed bug with server's client connection management · 4fba95c6
      Antoine Millet authored
      A server need to keep a list of connected clients to trigger their
      shutdown when a global server shutdown is requested. To avoid memory
      leaks with the client list, the list is composed of weakref. Problem:
      connected RpcConnection can be collected because the application is not
      required to keep a ref on each connection.
      
      The problem was fixed by removing weakrefs. The list is cleaned of its
      offline clients each time a new client is connected.
      4fba95c6
    • Antoine Millet's avatar
      Removed get_handler and set_handler from the RpcConnection · d4cc7d0e
      Antoine Millet authored
      These methods must be available only through the Rpc protocol. To access
      to the default RPC (aka rpc0), use the "connection.rpc" property:
      
          conn.rpc.set_handler(MyHandler())
      d4cc7d0e
    • Antoine Millet's avatar
      Unexpected socket error on read now shutdown the connection · 40e9e61a
      Antoine Millet authored
      This behavior allow to handle properly the case where an error
      (such as a Broken Pipe error) is raised when reading on the socket.
      When using SimpleServer class, the socket will be removed from the
      connected client list. When using as client, the application is in charge
      of re-connection exactly like a desired shutdown. A DEBUG logging message
      is emitted by the library when this event is triggered.
      40e9e61a
    • Antoine Millet's avatar
      Whitespaces · 0703dc09
      Antoine Millet authored
      0703dc09
    • Anael Beutot's avatar
      Async call with callback · 335267c9
      Anael Beutot authored
      335267c9
    • Antoine Millet's avatar
      Started to work on 18~dev · 32d5bfea
      Antoine Millet authored
      32d5bfea
  2. Nov 21, 2011
  3. Oct 27, 2011
  4. Oct 10, 2011
  5. Oct 06, 2011
  6. Oct 05, 2011
  7. Oct 04, 2011
  8. Oct 03, 2011