Uploaded image for project: 'Go Driver'
  1. Go Driver
  2. GODRIVER-1209

Create LocalAddresser interface and make topology.Connection implement it

    • Type: Icon: New Feature New Feature
    • Resolution: Fixed
    • Priority: Icon: Major - P3 Major - P3
    • 1.1.0
    • Affects Version/s: None
    • Component/s: Core API
    • None

      The BI Connector uses the local address of a Connection to filter current operations on the server. The new Connection interface does not provide access to the underlying net.Conn's local address. This ticket should add a LocalAddresser interface to the driver package that has a LocalAddress() method. It can return a net.Addr or a string; the BIC only needs the address as a string:

      c, err := server.Connection(ctx)
      connAddrs = append(connAddrs, c.LocalAddr().String())
      

      so returning a string directly is fine (we would just skip the trailing .String() call).

      The old version of the go driver used by BI Connector had a LocalAddr method on the Connection type that returned a net.Addr which was just the underlying net.Conn's LocalAddr() result.

            Assignee:
            manny.eppinger@mongodb.com Emmanuel Eppinger (Inactive)
            Reporter:
            matthew.chiaravalloti@mongodb.com Matthew Chiaravalloti
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: