Git Product home page Git Product logo

Comments (2)

ekzhang avatar ekzhang commented on August 24, 2024 2

Thanks for the suggestion! I don't think we'll add a setting to enable configuring TCP keepalive to bore, since it's intended to be minimal as an example of how to do something like this. But configuring it yourself is easy if you want to modify bore or write your own proxy based on it. You can lower it from the 2 hour default with:

use socket2::{SockRef, TcpKeepalive};

// ...

impl Server {
    // ...

    /// Start the server, listening for new connections.
    pub async fn listen(self) -> Result<()> {
        let this = Arc::new(self);
        let addr = SocketAddr::from(([0, 0, 0, 0], CONTROL_PORT));
        let listener = TcpListener::bind(&addr).await?;

        let ka = TcpKeepalive::new().with_time(Duration::from_secs(30)); // <- new line
        SockRef::from(&listener).set_tcp_keepalive(&ka)?; // <- new line
// ...

from bore.

miao2y avatar miao2y commented on August 24, 2024

Eventually I added keepalive to client side and it can reconnect to server automatically. Thanks!
Solution: add: TcpKeepalive Support

from bore.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.