summaryrefslogtreecommitdiff
path: root/lib/netstd
Commit message (Collapse)AuthorAgeFilesLines
* THRIFT-5684 upgrade to net7.0:Jens Geyer2023-02-166-46/+27
| | | | | Client: netstd Patch: Jens Geyer
* Merge branch 0.18.0Jens Geyer2023-02-141-1/+6
|\
| * Added reference to existing netstd README.md file to satisfy nuget package ↵0.18.0Jens Geyer2023-02-141-1/+6
| | | | | | | | upload
* | bump version numberJens Geyer2023-02-065-8/+8
|/
* netstd Server: Add IPv6dejank-isystem2023-01-011-1/+2
| | | | Unlike servers in other languages (tested: cpp & python), netstd (Csharp) listens only on IPv4. This can cause errors and delays on clients if they use "localhost" for hostname.
* THRIFT-5639 ToString() should use InvariantCultureJens Geyer2022-09-231-1/+6
| | | | | Client: netstd Patch: Jens Geyer
* Call ResetConsumedMessageSize from ReadMessageEndAsyncPhilip Lee2022-09-159-3/+26
|
* Add TSocketTransport ctorPhilip Lee2022-09-141-1/+74
|
* fixed a ton of missing ASF headers in *.thrift filesJens Geyer2022-09-1111-153/+183
|
* THRIFT-5624 suboptimal performance of the c# named pipe server transport in ↵Jens Geyer2022-09-092-69/+172
| | | | | | | multithread servers Client: netstd Patch: Jens Geyer
* THRIFT-5623 ref to disposed instance should be set to nullJens Geyer2022-09-081-1/+2
| | | | | | | Client: netstd Patch: Jens Geyer plus some improvements regarding error outputs
* THRIFT-5591 Add uuid type to IDL and implement reference code (+ improved ↵Jens Geyer2022-09-0513-57/+252
| | | | | | | self-tests) Client: compiler general, netstd, Delphi Patch: Jens Geyer
* version bumpJens Geyer2022-08-305-8/+8
|
* FIX misc license headersJens Geyer2022-06-082-0/+18
|
* THRIFT-5585 net5.0 end of support May 2022Jens Geyer2022-05-261-1/+1
| | | | | Client: netstd Patch: Jens Geyer
* Revert SHA-1: 52d263e77c48bbf7cbabd03161107557d1e410b1Jens Geyer2022-03-191-4/+10
| | | | | | | Using sync calls breaks web scenarios. THRIFT-5499: Use blocking Read/Write calls to make sure the Receive/SendTimeout is checked. Client: netstd
* Pass cancellation token to AcceptTcpClientAsync() in net6Jens Geyer2022-03-191-0/+4
| | | | | Client: netstd Patch: Jens Geyer
* Merge branch '0.16.0' into masterJens Geyer2022-02-151-0/+3
|\
| * FIX: missing EXTRA_DIST entriesJens Geyer2022-02-021-1/+1
| |
| * FIX: missing EXTRA_DIST entriesJens Geyer2022-02-021-0/+3
| |
| * THRIFT-5504 CA2254 Message template should be compile time constantJens Geyer2022-01-2717-40/+62
| | | | | | | | | | Client netstd Patch: Jens Geyer
* | THRIFT-5499: Use blocking Read/Write calls to make sure the ↵TeinRnD2022-02-101-10/+4
| | | | | | | | | | | | Receive/SendTimeout is checked. Client: netstd
* | THRIFT-5511 Full support for the new net6 "nullability" semanticsJens Geyer2022-02-087-123/+106
| | | | | | | | | | | | | | Client: netstd Patch: Jens Geyer This closes #2516
* | THRIFT-5504 CA2254 Message template should be compile time constantJens Geyer2022-01-2717-40/+62
| | | | | | | | | | Client netstd Patch: Jens Geyer
* | Release 0.16.0Jens Geyer2022-01-205-8/+8
|/
* 2022 we haveJens Geyer2022-01-201-1/+1
|
* THRIFT-5479 Add net 6 supportJens Geyer2022-01-098-27/+40
|
* THRIFT-5479 Add net 6 supportJens Geyer2021-12-057-34/+44
| | | | | Client: netstd Patch: Jens Geyer
* THRIFT-5481 consolidate netstd server implementation details into one common ↵Jens Geyer2021-11-142-80/+81
| | | | | | | model Client: netstd Patch: JensG
* THRIFT-5480 TThreadPoolAsyncServer using TFramedTransport mistakenly drops ↵Jens Geyer2021-11-141-0/+1
| | | | | | | | | client Client: netstd Patch: Ioannis Efthymiou & Jens Geyer This closes #2478
* - Fixed a few XML comments and ArgumentException argumentsJens Geyer2021-10-284-7/+14
| | | | - Suppressed certain unwanted CS1591 "XML comments missing" warnings
* lib/netstd/Thrift/Thrift.csproj: Generate documentation for .NETMario Emmenlauer2021-08-251-0/+1
|
* Minor whitespace cleanup in csproj filesMario Emmenlauer2021-08-252-33/+37
|
* bump version numberJens Geyer2021-08-035-8/+8
|
* THRIFT-5445 "cancellationToken" cannot be used as argument nameJens Geyer2021-08-011-1/+5
| | | | | Client: netstd Patch: Jens Geyer
* THRIFT-5444 Netstd generator produces uncompileable code for enums ending ↵Jens Geyer2021-08-013-0/+83
| | | | | | | | | with "_result" or "_args" Client: netstd Patch: Jens Geyer This closes #2424
* THRIFT-5436 Timeout.Infinite is not a good defaultJens Geyer2021-06-251-3/+4
| | | | | Client: netstd Patch: Jens Geyer
* THRIFT-5431 Response should include 'content-type' headerJens Geyer2021-06-161-4/+6
| | | | | | | Client: netstd Patch: Jens Geyer This closes #2409
* THRIFT-5419 Incorrect usage of thread pool in TThreadPoolAsyncServer may ↵phxnsharp2021-05-261-8/+8
| | | | | | | | | lead to poor performance Client: netstd Patch: Nathan P Sharp, Jens Geyer This closes #2395
* THRIFT-5422 add threadpool server to netstd test suite implJens Geyer2021-05-261-5/+7
| | | | | | | Client: netstd Patch: Jens Geyer This closes #2398
* THRIFT-5408 Support for deprecated/obsolete methods (via annotation)Jens Geyer2021-05-051-0/+8
| | | | | | | Client: netstd Patch: Jens Geyer This closes #2381
* commented private code that is definitely never usedJens Geyer2021-04-161-2/+6
| | | | This closes #2375
* THRIFT-5398 ThreadPoolServer not stoppable via CancellationTokenJens Geyer2021-04-153-15/+12
| | | | | | | Client: netstd Patch: Jens Geyer This closes #2376
* THRIFT-5396 deprecate "Async" method postfixJens Geyer2021-04-102-8/+18
| | | | | | | Client: netstd Patch: Jens Geyer This closes #2374
* THRIFT-5395 inconsistent treatment of methods ending in "Async"Jens Geyer2021-04-102-0/+14
| | | | | | | Client: netstd Patch: Jens Geyer This closes #2372
* THRIFT-5391 Named pipes transport hardeningJens Geyer2021-04-022-11/+35
| | | | | | | Client: netstd Patch: Jens Geyer This closes #2367
* THRIFT-5382 Netstd default list/set enums values are generated incorrectlyThomas2021-03-273-0/+61
| | | | | | | Client netstd Patch: Thomas Bruggink This closes #2364
* Fix netstd test lib build on non windows hostsThomas2021-03-261-19/+38
| | | | | | | Client: netstd Patch: Thomas Bruggink & Jens Geyer This closes #2361
* THRIFT-5236 THttpTransport.cs still has bad timeout codeThomas2021-03-262-1/+57
| | | | | | | Client: netstd Patch: Thomas Bruggink This closes #2360
* THRIFT-5373 HTTP status in case of Protocol/Transport exceptionsJens Geyer2021-03-181-1/+6
| | | | | Client: netstd Patch: Jens Geyer