Skip to content

Commit

Permalink
Merge pull request #2160 from timothyschoen/pd.link
Browse files Browse the repository at this point in the history
[pd.link]: small fix
  • Loading branch information
porres authored Aug 27, 2024
2 parents 8767e4b + 2bec318 commit 5032565
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Code_source/Compiled/control/pd.link/link.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
#include <ifaddrs.h>
#endif

const int kPort = 12021;
const uint64_t kApplicationId = 7681412;
const unsigned int kMulticastAddress = (224 << 24) + (0 << 16) + (0 << 8) + 123; // 224.0.0.123
constexpr int kPort = 12021;
constexpr uint64_t kApplicationId = 7680412;
constexpr unsigned int kMulticastAddress = (224 << 24) + (0 << 16) + (0 << 8) + 123; // 224.0.0.123

// t_link manages the process of finding connectable devices, and opening a 2-way UDP connection
class t_link {
Expand Down

0 comments on commit 5032565

Please sign in to comment.