diff options
author | Adin Scannell <ascannell@google.com> | 2020-05-01 18:01:58 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-05-01 18:03:09 -0700 |
commit | 56c64e4bb9dc75659799f3e5df9daddf10d810e1 (patch) | |
tree | cdc3c89a18f1b8f59dd3e92778bc4da6fb5e51a5 | |
parent | 89562b5b2bb186a3bc61412590a25d77f5d8f3e2 (diff) |
Fix include type.
PiperOrigin-RevId: 309506957
-rw-r--r-- | test/packetimpact/dut/posix_server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/packetimpact/dut/posix_server.cc b/test/packetimpact/dut/posix_server.cc index cb499b0b1..2ebd3b95b 100644 --- a/test/packetimpact/dut/posix_server.cc +++ b/test/packetimpact/dut/posix_server.cc @@ -11,6 +11,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +#include <arpa/inet.h> #include <fcntl.h> #include <getopt.h> #include <netdb.h> @@ -25,7 +26,6 @@ #include <iostream> #include <unordered_map> -#include "arpa/inet.h" #include "include/grpcpp/security/server_credentials.h" #include "include/grpcpp/server_builder.h" #include "test/packetimpact/proto/posix_server.grpc.pb.h" |