How can I find this send function

Godot Version

v4.3

Question

as mentioned here: How can I find this send function · Issue #99744 · godotengine/godot · GitHub

I have looked everywhere, but still couldn’t find the implementation of this send function. This function is failing for no apparent reason, so I need to find the function implementation to understand what is going wrong. Thank you in advance for your guidance is very much appreciated.

Here is the line: godot/modules/websocket/websocket_peer.cpp at bbc54692c05ff6a85a6aeefbf5b9c87de91983d8 · godotengine/godot · GitHub

Is this it?

It is a virtual method overridden in different classes, for example here godot/modules/websocket/wsl_peer.h at bbc54692c05ff6a85a6aeefbf5b9c87de91983d8 · godotengine/godot · GitHub and here godot/modules/websocket/emws_peer.h at bbc54692c05ff6a85a6aeefbf5b9c87de91983d8 · godotengine/godot · GitHub

The second one does indeed call the method linked above