-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.11.0: [FEATURE] Add support for Q044
- Loading branch information
Dmitri Tikhonov
committed
Aug 15, 2018
1 parent
c6457e4
commit 9626cfc
Showing
34 changed files
with
1,157 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2018-08-15 | ||
|
||
- 1.11.0 | ||
- [FEATURE] Add support for Q044. | ||
|
||
2018-08-09 | ||
|
||
- 1.10.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* Copyright (c) 2017 - 2018 LiteSpeed Technologies Inc. See LICENSE. */ | ||
#ifndef LSQUIC_BYTESWAP_H | ||
#define LSQUIC_BYTESWAP_H 1 | ||
|
||
#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__NetBSD__) | ||
#include <sys/endian.h> | ||
#define bswap_16 bswap16 | ||
#define bswap_32 bswap32 | ||
#define bswap_64 bswap64 | ||
#elif defined(__APPLE__) | ||
#include <libkern/OSByteOrder.h> | ||
#define bswap_16 OSSwapInt16 | ||
#define bswap_32 OSSwapInt32 | ||
#define bswap_64 OSSwapInt64 | ||
#elif defined(WIN32) | ||
#define bswap_16 _byteswap_ushort | ||
#define bswap_32 _byteswap_ulong | ||
#define bswap_64 _byteswap_uint64 | ||
#else | ||
#include <byteswap.h> | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.