Skip to content

Commit

Permalink
👀 Fix missing include in TlsConnectionTransport (#28)
Browse files Browse the repository at this point in the history
Fixed a missing include in `TlsConnectionTransport.h` which could cause compilation errors for external consumers, due to `F_GETFL` and `O_NONBLOCK` being undefined.
  • Loading branch information
haydenmc authored Feb 24, 2021
1 parent 631dae1 commit 9b84729
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions inc/TlsConnectionTransport.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <arpa/inet.h>
#include <atomic>
#include <chrono>
#include <fcntl.h>
#include <filesystem>
#include <functional>
#include <mutex>
Expand Down

0 comments on commit 9b84729

Please sign in to comment.