Logo white

Peter M. Groen / FlashMQ

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Commits 453
  • Compare
  • Branches 1
  • Tags 0
  • FlashMQ
  • utils.cpp
01 Aug, 2021
1 commit
  • Use monotonic clock in Timer class ...
    e1c7b86f
    This fixes side effects when system time changes.
    Wiebe Cazemier authored
    2021-08-01 10:21:24 +0200  
    Browse File »

05 Jun, 2021
2 commits
  • Expand client identifying string, including address
    e305b754
    Wiebe Cazemier authored
    2021-06-05 17:04:10 +0200  
    Browse File »
  • Optimize topicsMatch() a bit
    de87724a
    Wiebe Cazemier authored
    2021-06-05 11:04:20 +0200  
    Browse File »

04 Jun, 2021
1 commit
  • Refactor SIMD/SSE
    d3072e9c
    Wiebe Cazemier authored
    2021-06-04 21:31:55 +0200  
    Browse File »

01 Jun, 2021
1 commit
  • Properly handle dollar topics ...
    367579cc
    Also include a few stats.
    Wiebe Cazemier authored
    2021-06-01 18:18:06 +0200  
    Browse File »

20 May, 2021
1 commit
  • Handle loading various invalid files ...
    d541986e
    https://github.com/halfgaar/FlashMQ/issues/2
    Wiebe Cazemier authored
    2021-05-20 20:45:12 +0200  
    Browse File »

16 May, 2021
2 commits
  • Likely fixes for Clang 12 warnings
    c89da637
    Wiebe Cazemier authored
    2021-05-16 20:25:07 +0200  
    Browse File »
  • Test building Clang/GCC on 20.04/18.04
    24a8d11d
    quinox authored
    2021-05-16 20:25:07 +0200  
    Browse File »

04 May, 2021
1 commit
  • Optimize UTF-8 check and add tests
    3dbab5a7
    Wiebe Cazemier authored
    2021-05-04 20:50:44 +0200  
    Browse File »

26 Apr, 2021
1 commit
  • Add support for Mosquitto's acl_file
    05b38f94
    Wiebe Cazemier authored
    2021-04-26 11:40:34 +0200  
    Browse File »

11 Apr, 2021
1 commit
  • Add support for Mosquitto's password file ...
    b2c5fe90
    Encrypted version only.
    Wiebe Cazemier authored
    2021-04-11 13:48:22 +0200  
    Browse File »

27 Mar, 2021
1 commit
  • Integrate valid UTF-8 and publish char checking ...
    2ae1bb7e
    Profiling showed it was significant enough to do so.
    Wiebe Cazemier authored
    2021-03-27 15:29:38 +0100  
    Browse File »

20 Mar, 2021
20 commits
  • Add license
    60b9cd16
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Check for valid subscribe path
    71800651
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Fix tests and warnings
    e00c635e
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Add IPv6 support, with related listener options ...
    d06dcb0b
    This also adds configuration options for choosing what address to bind
    to.
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Fix HTTP parsing invalid data ...
    d05d2975
    Found by fuzzing.
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Fix error on startup when log file isn't there
    b724f979
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Add config option 'allow_unsafe_username_chars'
    6702193e
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Support generic listener in config file ...
    5d72070e
    This allows creation of multiple listeners, with different protocols
    and/or SSL certificates.
    
    Related change: settings is now a class that is copyable and assignable,
    and is done so to each thread on reload.
    
    Semi-related fix: fix crash in quit when multiple threads initiated it.
    This came to light when testing the auth plugin settings.
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Add IoWrapper, with websocket support added ...
    b5ba41f5
    The ping/pong is actually untested at this point, because Paho (my test
    client for now) doesn't do those. I wonder if any do, because MQTT
    already has ping/pong.
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Buffer size and max packet size as setting
    1106e210
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Add setting 'allow_unsafe_clientid_chars' ...
    65146ae2
    And some side issues.
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Deal with clientid protocol version-appropriate ...
    1f378699
    And include some extra error conditions.
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Working on expiring sessions ...
    33ef5bdf
    This includes a timer mechanism.
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Auth plugin init works ...
    543d4451
    It can be defined in the config file, along with options.
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Use vector for splitting topic path ...
    0ac76185
    It's a little faster.
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Check publish paths
    0038d1ea
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Some more compliant connect error handling
    52cdff03
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • Add isValidUtf8()
    4eaca771
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • I think this covers retained messages
    33d19cec
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »
  • random stuff
    daa339b0
    Wiebe Cazemier authored
    2021-03-20 19:02:25 +0100  
    Browse File »

03 Dec, 2020
1 commit
  • bare start
    19f21bf2
    Wiebe Cazemier authored
    2020-12-03 22:15:43 +0100  
    Browse File »