Construct a protocol object for a specific address family and protocol.
| 52 | public: |
| 53 | /// Construct a protocol object for a specific address family and protocol. |
| 54 | stream_protocol(int address_family, int socket_protocol) |
| 55 | : family_(address_family), |
| 56 | protocol_(socket_protocol) |
| 57 | { |
| 58 | } |
| 59 | |
| 60 | /// Construct a generic protocol object from a specific protocol. |
| 61 | /** |
nothing calls this directly
no test coverage detected