[PR #2531] [MERGED] Use hello msg struct #15257

Closed
opened 2026-08-05 03:07:17 -04:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/2531
Author: @lixmal
Created: 9/4/2024
Status: Merged
Merged: 9/4/2024
Merged by: @lixmal

Base: feature/relay-integrationHead: use-hello-msg-struct


📝 Commits (7)

📊 Changes

7 files changed (+179 additions, -81 deletions)

View changed files

📝 relay/client/client.go (+24 -7)
relay/messages/address/address.go (+30 -0)
relay/messages/auth/auth.go (+51 -0)
📝 relay/messages/message.go (+52 -60)
📝 relay/messages/message_test.go (+2 -2)
📝 relay/server/peer.go (+3 -8)
📝 relay/server/relay.go (+17 -4)

📄 Description

Describe your changes

Checklist

  • Is it a bug fix
  • Is a typo/documentation fix
  • Is a feature enhancement
  • It is a refactor
  • Created tests that fail without the change (if possible)
  • Extended the README / documentation, if necessary

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbirdio/netbird/pull/2531 **Author:** [@lixmal](https://github.com/lixmal) **Created:** 9/4/2024 **Status:** ✅ Merged **Merged:** 9/4/2024 **Merged by:** [@lixmal](https://github.com/lixmal) **Base:** `feature/relay-integration` ← **Head:** `use-hello-msg-struct` --- ### 📝 Commits (7) - [`23de3be`](https://github.com/netbirdio/netbird/commit/23de3be5420915a273563a26efc29e1bbe13cd18) Make client hello flexible - [`9414bc5`](https://github.com/netbirdio/netbird/commit/9414bc5158c0b888917db131251c12f5726eeaab) Add missing package - [`62b53b3`](https://github.com/netbirdio/netbird/commit/62b53b3686e842f7cf8aee165424e8878e195f85) Fix magic header size - [`7f51733`](https://github.com/netbirdio/netbird/commit/7f5173391003645a7e5f146ad9c43cef1289b0dd) Fix decode hello response - [`8ca6140`](https://github.com/netbirdio/netbird/commit/8ca614081037caba22e6fdf36b7d4b91c785d2b2) Move slicing - [`310195c`](https://github.com/netbirdio/netbird/commit/310195c33596bc749fcce222971a9d18f2782265) Remove log info - [`5c3be91`](https://github.com/netbirdio/netbird/commit/5c3be917361c4ec8225a0559cc1177bd97c16481) Fix transport msg ### 📊 Changes **7 files changed** (+179 additions, -81 deletions) <details> <summary>View changed files</summary> 📝 `relay/client/client.go` (+24 -7) ➕ `relay/messages/address/address.go` (+30 -0) ➕ `relay/messages/auth/auth.go` (+51 -0) 📝 `relay/messages/message.go` (+52 -60) 📝 `relay/messages/message_test.go` (+2 -2) 📝 `relay/server/peer.go` (+3 -8) 📝 `relay/server/relay.go` (+17 -4) </details> ### 📄 Description ## Describe your changes ## Issue ticket number and link ### Checklist - [x] Is it a bug fix - [ ] Is a typo/documentation fix - [x] Is a feature enhancement - [ ] It is a refactor - [ ] Created tests that fail without the change (if possible) - [ ] Extended the README / documentation, if necessary --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
saavagebueno added the pull-request label 2026-08-05 03:07:17 -04:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: DYNR/netbird#15257