Skip to content

Commit

Permalink
Updated changelogs and function text
Browse files Browse the repository at this point in the history
  • Loading branch information
Gramps committed Oct 20, 2023
1 parent db3f74b commit 56c098d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/changelog/gdextension.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Fixed: `requestEquippedProfileItems` was missing method bind, thanks to _BOTLANNER_
- Fixed: `get_ticket_for_web_api` callback for getting actual ticket buffer, thanks to _dicarne_
- Fixed: compiler complaining about comparison between Steam enum and GodotSteam enum for `steamInitEx`
- Fixed: `getListenSocketAddress` fixed to provide the actual address and optional port
- Changed: different defaults in Github Actions files
- Changed: `createBrowser` now sends proper NULL when empty string passed
- Changed: `html_browser_ready` from callback to proper call result
Expand Down
1 change: 1 addition & 0 deletions docs/changelog/gdnative.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ www# GDNative Change-Log
- Fixed: `requestEquippedProfileItems` was missing method bind, thanks to _BOTLANNER_
- Fixed: `get_ticket_for_web_api` callback for getting actual ticket buffer, thanks to _dicarne_
- Fixed: compiler complaining about comparison between Steam enum and GodotSteam enum for `steamInitEx`
- Fixed: `getListenSocketAddress` fixed to provide the actual address and optional port
- Changed: `createBrowser` now sends proper NULL when empty string passed
- Changed: `html_browser_ready` from callback to proper call result
- Changed: cast handle in `setSize` as Steam HHTMLBrowser
Expand Down
1 change: 1 addition & 0 deletions docs/changelog/godot3.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Fixed: `requestEquippedProfileItems` was missing method bind, thanks to _BOTLANNER_
- Fixed: `get_ticket_for_web_api` callback for getting actual ticket buffer, thanks to _dicarne_
- Fixed: compiler complaining about comparison between Steam enum and GodotSteam enum for `steamInitEx`
- Fixed: `getListenSocketAddress` fixed to provide the actual address and optional port
- Changed: `createBrowser` now sends proper NULL when empty string passed
- Changed: `html_browser_ready` from callback to proper call result
- Changed: cast handle in `setSize` as Steam HHTMLBrowser
Expand Down
1 change: 1 addition & 0 deletions docs/changelog/godot4.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Fixed: `requestEquippedProfileItems` was missing method bind, thanks to _BOTLANNER_
- Fixed: `get_ticket_for_web_api` callback for getting actual ticket buffer, thanks to _dicarne_
- Fixed: compiler complaining about comparison between Steam enum and GodotSteam enum for `steamInitEx`
- Fixed: `getListenSocketAddress` fixed to provide the actual address and optional port
- Changed: different defaults in Github Actions files
- Changed: `createBrowser` now sends proper NULL when empty string passed
- Changed: `html_browser_ready` from callback to proper call result
Expand Down
6 changes: 3 additions & 3 deletions docs/classes/networking_sockets.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,10 +429,10 @@

### getListenSocketAddress

!!! function "getListenSocketAddress( ```uint32``` socket )"
Returns local IP and port that a listen socket created using [CreateListenSocketIP](#createlistensocketip) is bound to.
!!! function "getListenSocketAddress( ```uint32``` socket, ```bool``` with_port )"
Returns local IP and port that a listen socket created using [CreateListenSocketIP](#createlistensocketip) is bound to. The ```with_port``` argument defaults to true.

**Returns:** bool
**Returns:** string

**Note:** This is not how you find out your public IP that clients can connect to.

Expand Down

0 comments on commit 56c098d

Please sign in to comment.