X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fsocket-util.h;h=670eeb343b049fe90e1ad64ee45b24c0f0e00854;hb=86c1d8dcc38489c9b04ec242a14f6ec64c81fb24;hp=5bf8529776a7dab6e7b2352d267ce5fa83bf3768;hpb=24f974c481bc5230552b23d96312f645f7533cd3;p=sliver-openvswitch.git diff --git a/lib/socket-util.h b/lib/socket-util.h index 5bf852977..670eeb343 100644 --- a/lib/socket-util.h +++ b/lib/socket-util.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc. + * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,6 +23,7 @@ #include #include #include "openvswitch/types.h" +#include #include int set_nonblocking(int fd); @@ -96,4 +97,10 @@ int recv_data_and_fds(int sock, void *data, size_t size, int fds[SOUTIL_MAX_FDS], size_t *n_fdsp); +/* Helpers for calling ioctl() on an AF_INET socket. */ +struct ifreq; +int af_inet_ioctl(unsigned long int command, const void *arg); +int af_inet_ifreq_ioctl(const char *name, struct ifreq *, + unsigned long int cmd, const char *cmd_name); + #endif /* socket-util.h */