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