1
#pragma once
2

            
3
namespace Envoy {
4
namespace Network {
5

            
6
/**
7
 * Action that should occur on a connection after I/O.
8
 */
9
enum class PostIoAction {
10
  // Close the connection.
11
  Close,
12
  // Keep the connection open.
13
  KeepOpen
14
};
15

            
16
} // namespace Network
17
} // namespace Envoy