Тёмный

Networking in C++ 

The Cherno
Подписаться 661 тыс.
Просмотров 248 тыс.
50% 1

Опубликовано:

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 384   
@TheCherno
@TheCherno Год назад
Thanks for watching! Links to everything in the description, give Walnut Chat a go (if the server hasn’t crashed yet…)! Also don’t forget to check out Hostinger for all your server and hosting needs - go to hostinger.com/cherno and use coupon code CHERNO at checkout! ❤
@matthewissa
@matthewissa Год назад
Hell yeah! This is awesome!
@CodeParticles
@CodeParticles Год назад
@TheCherno, With all due respect and time constraints and all. I feel slightly disappointed that you had to use a 3rd party to construct your networking protocols. You can easily go from Linux to Windows by creating a client and server program and vice versa with using winsocks2 for windows and cygwin network drivers to run native Linux apps on windows. I feel only a handful of us who are insane & hardcore enough to write our own game & physics engines from scratch should also have this same belief in networking as well. Just my 2 cents =)
@cyberchef8344
@cyberchef8344 Год назад
@@CodeParticles Why? How is what you're doing any better than using a 3rd party that handles the OS specifics for you? If anything, your solution would probably result in less efficient code, because you're reinventing the wheel. And, if it is truly about the idea of being "insane and hardcore", as you put forth, then why use cygwin network drivers? (That sentence doesn't make that much sense btw, but I'm interpreting it as you're using it as a method of portability between Linux and Windows). Wouldn't a truly "insane and hardcore" thing be to simply build your own network layer that creates an abstracted socket implementation built on top of each individual OS API you wish to support? He mentioned that he doesn't have a lot of experience in networking, and his channel caters to game developers - I would argue his choice of using the steam library is actually a very good one. It's generally not advisable to teach the intricacies of a subject you are not intimately familiar with, and a 3rd party library allows him to cover "how to do it" without really understanding how it works.
@josealejandrovaroncarreno1692
@TheCherno is possible to create raw sockets in c++ windows ?
@nav-verse
@nav-verse Год назад
@TheCherno hey great video again. I have learned more about C++ from your tutorials than any other ones. Just a suggestion would mind creating a video on C++ Software interview prep? I'm sure a lot of people would be interested. Thank you.
@anafro_ru
@anafro_ru Год назад
I think that the lack of networking built-in in C++ is a deep joke about C++ programmers finding making friends difficult :)
@notuxnobux
@notuxnobux Год назад
In C++ your friends can touch your private parts
@anafro_ru
@anafro_ru Год назад
@@notuxnobux 💀⚰
@CPSPD
@CPSPD Год назад
@@notuxnobux lmfao
@ronaldweasly561
@ronaldweasly561 Год назад
Type enemy instead
@Unknown2634g
@Unknown2634g Год назад
Java devs dying at this joke
@davisdjosh
@davisdjosh Год назад
Side note, I don't think you need crossover cables anymore. I think NIC's can auto negotiate direct connections now. Some kind of update to the Ethernet Standard.
@thewhitefalcon8539
@thewhitefalcon8539 Год назад
since gigabit it's mandatory. Some 100 NICs also support it as a bonus
@kurt7020
@kurt7020 Год назад
I think the standard was MDI or MDI-X or whatever - but yes.
@RaffaeleSansone
@RaffaeleSansone Год назад
I can confirm modern computers don't require crossover cables to communicate when connected directly to each other. I used rtp midi just fine
@TheCherno
@TheCherno Год назад
Ah cool. I’m still living in the 2000s 😆
@datarioniboii3986
@datarioniboii3986 Год назад
@@kurt7020 yup Auto-MDIX.
@weirddan455
@weirddan455 Год назад
Hey Cherno remembered that Linux exists. +1 for more Linux videos please :)
@friedrichmyers
@friedrichmyers 4 месяца назад
Linux is good but it is hard to develop games on it. And for a Unix/Unix-like system it is better to use BSD anyways.
@joshnjoshgaming
@joshnjoshgaming 3 месяца назад
@@friedrichmyershow is it hard to develop games on linux
@friedrichmyers
@friedrichmyers 3 месяца назад
@@joshnjoshgaming Ok, here we go. It seems like you're a fanboy. Let me break it down: 1. Fuck Nvidia. With that out of the way 2. No major engine support. Although, I don't use engine and go low level most of the time, there are times where I use an engine for quick implementations. 3. No debugger. "Oh but that's an IDE thing". No. Linux just particularly sucks at providing an IDE. I use Emacs, even on Windows but I still use Visual Studio for its debugger and LSP. There's nothing like it in the market. No. Jetbrains doesn't come close 4. Collaboration. You know, when you have a job, you don't work on your own. Developers work with you. To make the best of your time, remove the OS barrier. 5. Why would I bother about Windows? Because everyone plays games on Windows so why would I develop on some platform and fix errors on something else? One tool doesn't fit all. I've been a hardcore linux user for like 5 years. Loved it. But the support isn't there.
@joshnjoshgaming
@joshnjoshgaming 3 месяца назад
@@friedrichmyers i asked a simple question, douche, way to make assumptions and be rude for no reason. also, its clear you go "low level" (xD) cuz I don't know what engines arent supported, unreal godot and unity all have full linux support.
@sheepcommander_
@sheepcommander_ 3 месяца назад
Godot!
@beterax
@beterax 4 месяца назад
I love this channel for actually going balls deep into these kinda topics. A typical internet article would leave me with questions and abstract explanations without allowing me to actually write some decent code.
@DrShwynx
@DrShwynx Год назад
awesome video. I'm not sure if you were aware, but Visual Studio has a remote debugging feature. You can edit on Windows, and compile and debug on another machine via ssh. This would save you the trouble of copying the code, compiling the code figuring out how to debug in linux (in case something doesn't work). Hope this helps in the future.
@onyxkane
@onyxkane 17 дней назад
even better way is to setup a VM in WSL and then you can directly use the VM's terminal (say ubuntu) on the vs code terminal section
@colinmaharaj
@colinmaharaj Год назад
I use c++ builder, and they usually bundle a networking library called Indy v10. It really has a lot of client and server networking components with support for SSL. You can do very low level programming for both tcp clients and servers, or add your own web server. I have actually use this to create an email client to aid in automating some email tasks via command line .
@TechnicJelle
@TechnicJelle Год назад
Yesss please more Linux videos! I'm especially interested in how to make proper cross-platform software, that is easy to build on both Linux and Windows.
@hawks3109
@hawks3109 Год назад
That's pretty easy conceptually :) I write c++ code on windows that compiles for linux and windows. I am at the network level so a ton of my code is low level and OS dependent. All you do is make a platform specific layer at the very base where you wrap all platform specific code under the same functions. Then you just configure your compilation params to only compile the files for the target platform. You can do this via cmake config params, in visual studio you can make different build targets. etc. An example is this: Windows_Platform.h int platformIndependentCode() { do something windows specific; return value; } Linux_Platform.h int platformIndependentCode() { do something linux specific; return value; } main.cpp int main() { platformIndependentCode(); return 0; } then compiling for linux would be: g++ main.cpp Linux_Platform.h this clearly wouldn't work and is a loose example, but that's how most do it. They wrap it all up in the same function redefined for each system. You can do the same thing using defines. Something like this: Platform_Secific.h #ifdef WINDOWS int platformIndependentCode() { do something windows specific; return value; } #else ifdef LINUX int platformIndependentCode() { do something linux specific; return value; } #endif for this method, you can define one or the other. Obviously this needs cleaned up because you could end up defining both and blah blah blah errors errors bugs right? But you get the basic idea I hope. Let me know if you have questions!
@ycombinator765
@ycombinator765 Год назад
@hawks3109 bro your discord? I want to have some discussion over this you
@MarcinKwiatkowski
@MarcinKwiatkowski Год назад
I'm solutions architect, and software engineer in field of networking for around quarter of century and I'm surprised how developers lacks in networking programming knowledge in 21st century, where we live in connected world since decades. I saw such deficiencies even among programmers who were developing 5G. Anyway you're doing excellent job making your videos! Good luck and please keep going. It's a pleasure to watch your videos.
@jordansprojects
@jordansprojects Год назад
I recently graduated with my bachelors in Computer Science. At my school they did not cover it well. There was very little programming. We mostly learned about the OSI Layers and protocols. Which I think is valuable and it is worth knowing, but we certainly did not learn what we needed to learn to be good engineers. Luckily great resources like Cherno exist- so here I am! TL;DR: I believe you. I do not think my CS education covered networking very well.
@shishirjais
@shishirjais 9 месяцев назад
You're right, Marcin. Meanwhile, could you please suggest a learning path (preferably with a few online tutorials) that traverses from fundamentals to expert level knowledge?
@LetuscontinueBlending
@LetuscontinueBlending Год назад
I think the "TV show" aspect is good, its a lot more fun to watch and it doesn't take any information away from the video. In fact I think its a better learning experience as a whole
@RobCanadian1
@RobCanadian1 Год назад
Just wanted to say I've just discovered you're channel, and this is such fantastic content. Really appreciate the hard work you put into these videos, I look forward to following you!
@granite657
@granite657 Год назад
I was literally meddling in this subject very recently, I am fortunate that this video would now teach me the more finer points of this very prospect.
@granite657
@granite657 Год назад
​@@sirsneakybeaky Honestly it helps to be compelled into using lower level functions to provide a service. You learn a lot more about the system under the hood and are more able to anticipate problems or possible complications later on. I made a webserver in C before and I learned a metric ton about networking that I wouldn't be able to had I not ventured out of my comfort zone. (The entire outside world of which happens to be anything that has to do with networks haha)
@ipizza9941
@ipizza9941 Год назад
My goal is to become so well - versed with C++ and networking that I can comprehend this video.
@irrelevantdev
@irrelevantdev Год назад
Seeing you upload a video makes me really excited to watch. Keep it up! I love your content.
@homomorphic
@homomorphic Год назад
I use asio. It is very good and yes, I won't touch anything that requires boost either, but as you note asio has a stand alone project and that's what I use.
@RAHULTMNT100
@RAHULTMNT100 7 месяцев назад
why dont you like boost
@homomorphic
@homomorphic 7 месяцев назад
@@RAHULTMNT100 I don't want a dependency on a rapidly evolving library. Asio library is pretty stable.
@friedrichhayek4862
@friedrichhayek4862 Год назад
27:31 You have to tell the linker to load the libraries in the local directory.
@rahulyavvari
@rahulyavvari Год назад
Hey Cherno, can you do a video on "Serialization in C++" for the C++ series....
@quadric_
@quadric_ Год назад
27:30 I believe you should use the (already existing) /usr/local/lib directory
@emty5526
@emty5526 Год назад
then the `export LD_LIBRARY_PATH...` step also wouldn't be necessary
@stephen686
@stephen686 Год назад
Thank you for bringing back the cool colours in the background in your videos.
@KyleGobel
@KyleGobel Год назад
The HTT protocol, the UD protocol, and the TC protocol
@grenadier4702
@grenadier4702 2 месяца назад
Real
@yanickpoirier8094
@yanickpoirier8094 10 месяцев назад
FYI: There is 2 RJ45 termination standard: 568A and 568B. A straight Ethernet cable is a cable that has both ends terminated with 568A or 568B. A crossover cable has one end terminated 568A and the other one is 568B. There is no 568B crossover: it's a 568A. Hooking 2 PCs back-to-back (i.e. without a switch in between) with an Ethernet cable no longer required a crossover cable IF both interface card are set to 1Gbit or higher. The network cards will do the crossover "internally". It's in the specs of Gigabit network. 10Mbit and 100Mbits connections do require crossover cables even if the card is capable of Gigabit. The same goes when connecting 2 switches (or hubs) using regular network ports.
@phee3D
@phee3D Год назад
I remember writing a c# networking system based on tom weiland's original c# networking tutorials and realizing later how much a waste of time it was to write it because the end result ifor all these libraries is the same: send message, send message reliably over udp, receive message. Everything else, you should be doing at the application level anyways so it doesn't make sense to write the actual sockets library unless you're curious to understand it, or if you think you have some ground breaking ideas that will revolutionize how the underlying transport works. So I agree, many times you don't need to understand how something works as long as you can effectively use it, better to concentrate on your own application.
@Kazyek
@Kazyek Год назад
You don't want to just "reliably send mover udp" though. Sometimes you need reliability and ordering, sometime you just need reliability without necessarily ordering, but most of the time for any real-time application like a game, what you want the most is just the latest one reliably, not caring about lost messages when a newer have been sent. Then, there are various strategies to archieve that to various trade-off of latency and bandwidth, depending on your bandwidth needs. (the most efficient trick for low-latency game networking is a lot of redundancy, because you want the lowest latency possible and the bandwidth usage is usually pretty minimal).
@phee3D
@phee3D Год назад
@@Kazyek i understand that, i do that at the application level using a tick system, each packet is associated with a tick and I can decide how to handle out of order packets. My point was you can find libraries thay implement the low level transports already and writing them yourself is usually a waste of time unless you have some particular requirements on how the messaging works.
@Bozebo
@Bozebo Год назад
@@phee3D Your point is wrong though. That particular requirement of wanting a mix of reliable communication and minimum-latency communication comes up in any fast action game. I would say though, there could easily be a networking library specific for games that could expose the right interface, I haven't investigated that. It's also really simple to develop, it's barely an afterthought compared to how you actually architect a game when networked: everything needs to eventually be unified on an event stream regardless if caused by network, user input, game script, response to detected events, "ai" input, etc. then you have to build the game logic underneath that layer. That's without considering the tick rates of concurrent threads, or if you're lock stepped, what your interpolation/extrapolation method is, how the actual architecture works (p2p, single server, or more like an mmo), if the server has complete authority over all actions or if there is some client event triggering with heuristic checks, or so many other strategies. Writing some boiler plate standard code to move bytes is not an issue or difficulty whatsoever.
@phee3D
@phee3D Год назад
@@Bozebo you didn't understand what I said. I never said you don't need a mix of reliable communication as well as fastest possible communication. I said these libraries should perform the following functions: send message, send reliable message over udp, receive message. By "send message", the first one in this list, I meant just sending messages as fast as possible, without considering any reliability. I myself am currently making a game where I use unreliable message sending for things such as player position and I also use reliable messages for events such as player death.
@AleksandrStrizhevskiy
@AleksandrStrizhevskiy Год назад
Thanks so much for making this video. I am new to C++ and bought some Udemy courses. I was surprised when going through them that I did not see lessons on Networking.
@sorry-randomvids4553
@sorry-randomvids4553 Год назад
Great Stuff, I love these type of videos where you teach more on things that are not really apart of c++ and where you need outside libraries, and learning those are exetremly confusing e.g learning encryption in c++ took ages and only installing the libraries where a whole process in it of itself
@delanomartin
@delanomartin Год назад
Who else watches these videos not understanding a thing cause you are new to programming but still enjoying it so much. Thanks TheCherno!
@ABDTalk1
@ABDTalk1 Год назад
me
@cyberchef8344
@cyberchef8344 Год назад
If you're watching for pure enjoyment that is perfectly fine, but just make sure you don't get overwhelmed. There are many years between a new programmer and all of the advanced topics he covers in his videos. Definitely cool to see the "endgame" but make sure you focus on the basics as well! Good luck with the journey :)
@delanomartin
@delanomartin Год назад
@@cyberchef8344 Thanks for the encouraging words! I will indeed take things step by step :)
@markuskluever4059
@markuskluever4059 Год назад
I'm looking forward to that state machine vid
@elakstein
@elakstein Год назад
+1
@kplays_6000
@kplays_6000 Год назад
+1
@StevenMartinGuitar
@StevenMartinGuitar Год назад
Every CPP dev: "I didn't like all the existing solutions because I didn't want to rely on third party libraries, so I made my own which can can download in the description to rely on in your own code" 😂
@StevenMartinGuitar
@StevenMartinGuitar Год назад
(Joking clearly.... glad to see some awesome networking vids on this channel)
@HotYaya
@HotYaya 10 месяцев назад
Im using ENet, also an easy to use lightweight UDP based library for typical game networking.
@jwadaow
@jwadaow Год назад
Bjarne was talking about the C++ standard networking being based on ASIO.
@LightBlazeMC
@LightBlazeMC Год назад
The best C++ teacher out there
@IlyesCodes
@IlyesCodes Год назад
I can only agree with you
@sharkdavid
@sharkdavid 3 месяца назад
Agreed. I got a job at Tesla because of this man.
@ThreatHunter-c8b
@ThreatHunter-c8b Год назад
c++ is powerfull languge when it comes to performonce i remember when i built a webserver using c++ i has so much fun learing how the socket works and serving full static website , great video btw
@vivekkoul4428
@vivekkoul4428 Год назад
Yesterday only I learned how to build a simple server using javascript with the help of nodejs. How different will be building a simple server in C++?
@harleyspeedthrust4013
@harleyspeedthrust4013 Месяц назад
​@@vivekkoul4428it's very different because javascript is a super high level language, and nodejs abstracts everything away. if you want to learn more about how computers actually work, you should play around with C and C++ for sure
@rajatmond
@rajatmond Год назад
ASIO is the better part of boost. And it is independent of boost actually and you can have a standalone installation. For a rigorous use of any I/O (not just networking) what I came to understand over 3-4 years is that you absolutely need to have a reactor or proactor design in palce anyway (maybe also with an event loop). That's exactly what ASIO is. Nothing more, nothing less. That's why I even use it on my embedded projects (esp32 with only 512 kb of ram has ported ASIO). It just makes I/O in general more robust and failsafe. The very concept of I/O is very complicated. These designs not only make life easier, they will at the same time help you understand the true nature of the problem and how to solve it.
@arimil.
@arimil. Год назад
Can't wait to see Cherno do Linux dev, but I have a feeling he's going to avoid it and do some cross compile thing with mingw or something.
@cubedude76
@cubedude76 Год назад
I would love to learn more about networking basics so I can understand what the high level process is for making a connection to a server, how to handle basic errors, etc.
@IshanChaudharii
@IshanChaudharii Год назад
I remember seeing a fork of the library on cherno's GitHub and kinda guessed a video might come up.. well here it is!
@Ozzymand
@Ozzymand Год назад
Finally! I've been waiting for this exact video for YEARS now
@isaaclowe5000
@isaaclowe5000 2 месяца назад
Really cool video. It's really gonna help me with a project i'm working on
@Erarnitox
@Erarnitox Год назад
There will be Networking in the C++26 standard most likely. You can search for Networking TS. And the library that is closest to that and will give you the easiest time migrating would be asio. There is a standalone version of asio you can get from ThinkAsync also, no need for the entire boost library. Honestly I think even for Games asio is a really good fit. But as you said: everyone has their preferences for sure and you are not forced to use that at all also. Yours seems to be going against the mainstream a little bit. That also shows in your build system choice :p
@not_ever
@not_ever Год назад
I searched for Networking TS and it seems that no one is currently working making the changes necessary to get it into C++26. Is It still being worked on?
@abhinavk0929
@abhinavk0929 Год назад
​@@not_everthat happens in C++ committee quite a lot, you can never be fully sure that you'll get that feature in c++26
@mrshodz
@mrshodz Год назад
Neat video. I like how you show how things are setup on Windows. I come from a non-Windows environment, it makes the video easier to follow.
@Asdayasman
@Asdayasman Год назад
12:20 what a time to be alive, where Australian Yugi Moto can teach us about programming. Seriously how did you do that with your hair?
@fa-pm5dr
@fa-pm5dr Год назад
it's like the cherno wants me to procrastinate work on monday
@HumanGamer
@HumanGamer Год назад
I Love C++, it's my favourite programming language. C is also cool. But I love the syntax of C++, I love how it works on basically everything, I love how you can access it from other languages like C#. I also love the performance. Who's with me? :D
@manofacertainrage856
@manofacertainrage856 Год назад
Game programmers do it differently - why not the networking TS which is almost part of C++ (and has been for a while) or the full-fledged ASIO?
@Fokziu
@Fokziu Год назад
asio has standalone mode that can be used without boost
@cyberchef8344
@cyberchef8344 Год назад
Honestly I've never had any issue with cpp not having a socket interface. I use cpp all the time at work for windows based applications. When I use it at home, it's always for something OS specific. There aren't many projects where I would choose cpp as the go to language if it needed to be OS agnostic. Obviously it makes sense for a game engine, but I don't build game engines :)
@Asdayasman
@Asdayasman Год назад
26:30 you for sure want your executables to be _owned_ by root:root though, so an unprivileged user can't change them. Generally a "good enough" pattern is to have files chowned to root:root, a nologin user called something like "app-server-headless" that runs your program(s) (usually under systemd nowadays), and then some accounts for your server administrators that have sudo access. You can restrict the sudo access or start messing with groups or even SELinux if you want to go hard on hardening, but "good enough" works aight.
@anon_y_mousse
@anon_y_mousse Год назад
I looked through the comments and could only find like two people addressing this point, so I'll address it myself and add to it, that you should've just used LD_LIBRARY_PATH and set it before calling the program. The path can be relative as well, so subdirectories are fine, but you can even just use '.' in cases where they're in the same directory. Second of all, if the distro you're using is setup properly then you should be using and already have a path for /usr/local/lib or in some cases /usr/local/lib64, though most would only have that if you do any 32-bit cross compiling work. You almost got that one right, but it was backwards because the local comes first. It's where all of the files should be collected that you create on top of the distro files.
@0xShawnAdams
@0xShawnAdams Год назад
I was so happy to see a networking in c++ video, since all the videos I've seen try go into boost::asio just to abstract it away with some custom wrapper class. I never heard of steam's networking library. Please do more Linux videos as well!
@IsaacC20
@IsaacC20 Год назад
The Cherno > Right. So you're sick of being alone. You need to connect with the world. That hit different.
@sinom
@sinom Год назад
Surely networking TS will be merged with c++26. Surely.
@jefferson5884
@jefferson5884 Год назад
Thanks, that's a great video! I'll definitely follow every single step. :)
@btiwari-games5279
@btiwari-games5279 Год назад
I remember watching your old video on networking on java we are getting older very fast👀
@AmmarH413
@AmmarH413 Год назад
thank you for existing
@andersonklein3587
@andersonklein3587 Год назад
By the way, about networking peer to peer with Windows for gaming, I was able to do that with a Vista machine back in the day. I was at a friend who didn't have a router (oh, the 2000s), and so I literally just plugged an ethernet cable between our notebooks and used an ad-hoc network option in the Windows network manager. It was surprisingly straightforward, like 1 minute and 10 clicks once I knew where to go. Edit: fairly sure that was also possible over wifi, you could self host a LAN wifi on your notebook, and have other notebooks join, it's been a while since I messed with that though so I don't recall for sure.
@kuhluhOG
@kuhluhOG Год назад
1:02 The Standard committee is working on adding a networking library.
@apivovarov2
@apivovarov2 Год назад
@16:00 spinning in loop with 10ms sleep? Controversial design. Can we use wait/notify approach instead?
@Omnifarious0
@Omnifarious0 Год назад
Sockets are a BSD API. Right down to Winsock actually having BSD copyright notices in it because they copied it. :-)
@Skulltroxx
@Skulltroxx Год назад
Could it be that Valve made GNS to support their games? Or, is there no connection?
@LSI87
@LSI87 Год назад
Wow .... in this video a lot of info... super vlogs .... C++ power
@mariusirgens5555
@mariusirgens5555 Год назад
And it is available for vcpkg - that is all I ask for in a library tbh 😎
@davidbow2743
@davidbow2743 Год назад
would love a video detailing how to statically link this library. tried following your tutorial (for static lib linking) with this which just fails, or requires i reference the .exp file, and then libcrypto and protobuff dll's still have to link dynmically.. I just want to embed the networking code in my dll... 😢
@samljer
@samljer Год назад
I feel like the next iteration of C++ should have a standard networking implementation. Even just an open/listen/close/connect. and thats it, would actually be enough. its actually pretty stupid it doesnt already, should have been in starting at 17 at the latest.
@crusaderanimation6967
@crusaderanimation6967 Год назад
Haging? Your server ? Cherno it's just ✨ SURPRISE PENETRATION TEST ✨
@Rajeshsingh-ws5th
@Rajeshsingh-ws5th Год назад
as you said in start of this vid, the it uses OS libs like winSock, but I believe that is also written in C++.
@uzoochogu
@uzoochogu Год назад
Coool, I'm definitely trying this.
@gnif
@gnif Год назад
`chmod +x *` is also incorrect. The library (.so) is not an executable, it contains executable code but it is not directly an executable file and as such there is no need to mark it as such. This is a bad practice to teach people, too often we see servers compromised because the user has done something silly like this. Also instead of installing application specific libraries into the global search path like you do, the better alternative is to set the `LD_LIBRARY_PATH` environment variable to add your application directory to the search path. Ie: `LD_LIBRARY_PATH=/app ./App-Server-Headless`. There is no requirement or need for libraries to be in a `lib` directory at all. You also do not need to use `ldconfig`. Typically you would deploy a script to launch your application that sets the env var to the application's installation location, ie: ``` #!/bin/bash APP_PATH="$(dirname ${readlink -f $0))" LD_PRELOAD_PATH="$APP_PATH/lib" exec ./my-app.bin ```
@anon_y_mousse
@anon_y_mousse Год назад
Funny you should mention that, because the distro I'm on has all of the *.so files set to executable. Although, sometimes they have a tiny function in them do some kind of a task or print a message. Most don't, but it does happen on occasion.
@_matte
@_matte Год назад
Just curious, why do you "dislike" vcpkg? Or is it just a personal preference managing your own libraries?
@RoboGameOfficial
@RoboGameOfficial 5 месяцев назад
Asio networking is ridiculously easy to setup. A few lines and you are sending data back and fourth between an IP.
@garri_gueta
@garri_gueta 9 месяцев назад
you make it more interesting than what it is :D, thanks
@woolyLinks8072
@woolyLinks8072 Год назад
im legit doing this for work right now for the first time lmfao
@josephreynolds7395
@josephreynolds7395 Год назад
This came in a timely manner lol
@yaghiyahbrenner8902
@yaghiyahbrenner8902 Год назад
I would recommend also looking at Quake-3 networking library. John Carmack made some interesting remarks after its development.
@realKlik
@realKlik Год назад
nice subtitle at the start. "Hello guys my name is China.."
@aresaurelian
@aresaurelian Год назад
Good work. This is quite useful.
@kanskejonasidag1
@kanskejonasidag1 Год назад
I've been looking forward to this! 🎉
@pizzaprime2k260
@pizzaprime2k260 Год назад
waiting for this video for a while
@HamzaHajeir
@HamzaHajeir Год назад
My brain compiler is looking for the declaration/definition of Buffer class. Is that available as open source?
@emomaxd2462
@emomaxd2462 Год назад
We need vulkan series like openGL
@Brahvim
@Brahvim Год назад
YES! That would be awesome. That would be awesome!
@akashpatikkaljnanesh
@akashpatikkaljnanesh Год назад
Woohoo I made the 2 second cut! :D
@mitchjmac
@mitchjmac Год назад
"Never change C++. Do people say that?" Yes, the "don't break ABI" crowd says it all the time, and they're the reason we can't have nice things.
@yuplucas4023
@yuplucas4023 Год назад
About the executable not finding the shared library when you execute it, you could either: 1. set the LD_LIBRARY_PATH to point to where your executable is ( export LD_LIBRARY_PATH=/path/to/shared/lib:$LD_LIBRARY_PATH ). This way the dynamic linker will find the library. 2. ELF files have an entry called rpath. This is used by the dynamic linker to load the shared libraries. When you link the executable with the shared library, you can tell the linker to set rpath to '$ORIGIN' to load libraries in the same directory as the executable. Tbh I have no idea why 2 is not the default :P
@l_or_enzociotola8298
@l_or_enzociotola8298 Год назад
even on vacation imma watch your videos!
@minneelyyyy
@minneelyyyy Год назад
even in languages where there is built in networking people often use third party libraries anyway, like I've never actually seen someone write networked code in rust and not use Tokio. the lack of built in networking is fairly acceptable.
@apivovarov2
@apivovarov2 Год назад
@15:59 - we can simply use 10ms instead of this long chrono statement since c++14
@Joscha1996
@Joscha1996 Год назад
You should call it the 'HTT Protocol' to confuse everybody 😂
@SpencerP96
@SpencerP96 6 месяцев назад
Can you not just use a message queue and make the key it connects to the others ip?
@ashu-NO1
@ashu-NO1 Год назад
does Hazel use GNS library? i am also working on a hobby game engine project , wondering if I can use this for a serious project
@brakpseudonimu236
@brakpseudonimu236 Год назад
I think with modern network adapters you can just use straight cable and it will be fine.
@velomolo
@velomolo Год назад
just what I needed
@mohammadvaldianandatauhid3125
FINALLY!
@sloth6765
@sloth6765 Год назад
Isnt RPC/remote procedure calls built in?
@MatanSpada
@MatanSpada Год назад
Hi, side question, Could you please write what photography and recording equipment you use?
@Xiefux
@Xiefux Год назад
you mentioned a crossover cable, but you don't actually need one. the computer can figure it out itself, so a normal cable will work
@speyck
@speyck Год назад
could you make a video about all the make stuff. on linux u used like make, premake and gmake but also mentioned cmake thoughout the video. it‘s kinda confusing for me to choose which of these I should use for my projects
@dark11demon11
@dark11demon11 8 месяцев назад
I like QT because it is cross-platform. I can compile for Linux, Windows, Android etc
@DeathAtYourDoorStep
@DeathAtYourDoorStep Год назад
good video this is something i like to see from u!
@AN-no2xo
@AN-no2xo Год назад
3:16 HTT protocol
@dsfdfssqdfsqfdfqsd4235
@dsfdfssqdfsqfdfqsd4235 Год назад
2:18 No, you don't need a crossover for that 3:00 There's high pitch sound there, pretty bad :(
@yasscat5484
@yasscat5484 Год назад
in the HTT protocol
@Redfrog1011
@Redfrog1011 Год назад
I’m all for the Linux representation
Далее
SOME UNIQUE C++ CODE! // Pacman Clone Code Review
26:42
2000 HOUR 2D Game Engine! // Code Review
32:01
Просмотров 87 тыс.
Why i think C++ is better than rust
32:48
Просмотров 307 тыс.
I forced EVERYONE to use Linux
22:59
Просмотров 549 тыс.
31 nooby C++ habits you need to ditch
16:18
Просмотров 786 тыс.
Minecraft Clone in C++ // Code Review
40:29
Просмотров 341 тыс.
Why I Don't Like Singletons
29:05
Просмотров 66 тыс.
I made it FASTER // Code Review
38:46
Просмотров 539 тыс.
this server WONT break....  - Clustered Storage Server
27:57
100+ Linux Things you Need to Know
12:23
Просмотров 1,1 млн
I did a C++ University Assignment
50:23
Просмотров 293 тыс.