X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fsocket-util.h;h=8c5af3966e96528281127b9560329844179e0a07;hb=d4da3acc2a788d1c1b78c0bea6399660c7851f4a;hp=f5d60105eede92f99b0626bcb21315948a3a9ece;hpb=52f8a75e1b9cd27d35f45daabe9ca5495b4faee3;p=openvswitch diff --git a/lib/socket-util.h b/lib/socket-util.h index f5d60105..8c5af396 100644 --- a/lib/socket-util.h +++ b/lib/socket-util.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,6 +24,7 @@ int set_nonblocking(int fd); int get_max_fds(void); int lookup_ip(const char *host_name, struct in_addr *address); +int lookup_ipv6(const char *host_name, struct in6_addr *address); int get_socket_error(int sock); int check_connection_completion(int fd); int drain_rcvbuf(int fd); @@ -45,5 +46,8 @@ int read_fully(int fd, void *, size_t, size_t *bytes_read); int write_fully(int fd, const void *, size_t, size_t *bytes_written); int fsync_parent_dir(const char *file_name); +int get_mtime(const char *file_name, struct timespec *mtime); + +void xpipe(int fds[2]); #endif /* socket-util.h */