diff options
| author | comex <comexk@gmail.com> | 2023-06-25 19:23:23 -0700 |
|---|---|---|
| committer | comex <comexk@gmail.com> | 2023-06-25 19:24:49 -0700 |
| commit | d885dd5b642807d0587acad43668cfccfdf06d1e (patch) | |
| tree | b3f4ac530883702313901f9d48453577ce060175 /src/core/hle/service/ssl/ssl_backend.h | |
| parent | b9f9d0a64215f8107ea82d1c541444f6ff138e7a (diff) | |
PR feedback + constification
Diffstat (limited to 'src/core/hle/service/ssl/ssl_backend.h')
| -rw-r--r-- | src/core/hle/service/ssl/ssl_backend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/ssl/ssl_backend.h b/src/core/hle/service/ssl/ssl_backend.h index 0dd8d9118..25c16bcc1 100644 --- a/src/core/hle/service/ssl/ssl_backend.h +++ b/src/core/hle/service/ssl/ssl_backend.h @@ -23,11 +23,11 @@ constexpr Result ResultInvalidSocket{ErrorModule::SSLSrv, 106}; constexpr Result ResultTimeout{ErrorModule::SSLSrv, 205}; constexpr Result ResultInternalError{ErrorModule::SSLSrv, 999}; // made up -constexpr Result ResultWouldBlock{ErrorModule::SSLSrv, 204}; -// ^ ResultWouldBlock is returned from Read and Write, and oddly, DoHandshake, +// ResultWouldBlock is returned from Read and Write, and oddly, DoHandshake, // with no way in the latter case to distinguish whether the client should poll // for read or write. The one official client I've seen handles this by always // polling for read (with a timeout). +constexpr Result ResultWouldBlock{ErrorModule::SSLSrv, 204}; class SSLConnectionBackend { public: |
