x276 Linux Kernel-Space Socket Programming - Introduction

Поделиться
HTML-код
  • Опубликовано: 20 дек 2024

Комментарии • 5

  • @TheLinuxChannel
    @TheLinuxChannel  6 месяцев назад +2

    Give a LIKE, if you are looking for more such niche video topics. Thank you 👍
    LINUX KERNEL & SYSTEMS PROGRAMMING CLASSES: thelinuxchannel.org/courses/
    Website - The Linux Channel: thelinuxchannel.org
    GitHub: github.com/kirankankipati
    Email: kiran.kankipati@gmail.com
    Contact: thelinuxchannel.org/contact/

  • @MikhailGoncharov-tl4cr
    @MikhailGoncharov-tl4cr 6 месяцев назад +1

    рад тебя видеть. ты лучший

  • @denilsonnjuguna5908
    @denilsonnjuguna5908 6 месяцев назад +2

    Your coding skills are truly inspiring! How long did it take you to reach this level? I’m also seeking some guidance on my ESP32 project. When the esp32 disconnects suddenly, my Python server isn’t notified, unlike with phones disconnecting from the server whereby the server is automatically notified. Additionally, not all ping packets (sent every 5 seconds from the esp32) are reaching the server. Could you suggest which parts of the TCP code for the esp32 I might need to tweak to resolve these issues?

    • @TheLinuxChannel
      @TheLinuxChannel  6 месяцев назад +2

      Thanks a lot. As I mention in some of my videos, coding is an art. Its like everyone can buy art supplies (canvas, colors, brushes), but that does not make a person artist. But the main tip is that when you code, focus on logic, not the language and syntax. That way it makes us to focus its true intended purpose is to automate something and the language is just a medium/expression. Regarding esp32, I never worked on the same. That said, check if there is any interference and so any packet corruption. And so server is dropping few. Again not sure about the overall context. w.r.t TCP code, yes I hope you refer server which is Linux, if so check the kernel source net/ipv4 parts of TCP. But that not sure will be any help with the issue you are facing