Bredbandskollen CLI  1.2
Asynchronous network task engine
pollstate.h
Go to the documentation of this file.
1 // Copyright (c) 2018 IIS (The Internet Foundation in Sweden)
2 // Written by Göran Andersson <initgoran@gmail.com>
3 
4 #pragma once
5 
11 enum class PollState {
12  NONE,
13  READ_BLOCKED,
15  CONNECTING,
16 #ifdef USE_GNUTLS
18 #endif
19  CLOSE,
20  KEEPALIVE,
21  KILL,
22  READ,
23  WRITE,
24  READ_WRITE
25 };
PollState
Definition: pollstate.h:11