2 Copyright 2006 Chris Tallon
4 This file is part of VOMP.
6 VOMP is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 VOMP is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with VOMP. If not, see <https://www.gnu.org/licenses/>.
37 class InputUDP : public Input
46 // InputUDP doesn't do any translation stuff so just keep everything happy here
47 void InitHWCListwithDefaults() {};
48 UCHAR TranslateHWCFixed(HWC_TYPE code) { return static_cast<UCHAR>(code); };
49 const char* getHardCodedHardwareKeyNamesForVompKey(UCHAR vompKey);
50 std::string getHardwareKeyName(HWC_TYPE hardwareKey);
53 static const char* myModName;
54 const char* modName() { return myModName; }
57 UDP4 udp4; // FIXME UDP6 ?
60 std::thread listenThread;
61 std::mutex threadStartProtect;
63 bool listenLoopStop{};
65 #ifdef WIN32 // FIXME move these into UDP4?
71 void processRequest(const void* data, UINT length);