src: rename epoll-socket.* to sock.*

This commit is contained in:
Bert Belder 2017-09-25 20:01:04 +02:00
parent fa10bfc829
commit b61fd61008
4 changed files with 6 additions and 6 deletions

View File

@ -2,12 +2,12 @@
#include <malloc.h>
#include <stdlib.h>
#include "epoll-socket.h"
#include "epoll.h"
#include "error.h"
#include "poll-group.h"
#include "port.h"
#include "queue.h"
#include "sock.h"
#include "tree.h"
#include "util.h"
#include "win.h"

View File

@ -2,13 +2,13 @@
#define EPOLL_PORT_DATA_H_
#include "afd.h"
#include "epoll-socket.h"
#include "epoll.h"
#include "internal.h"
#include "poll-group.h"
#include "queue.h"
#include "rb.h"
#include "reflock-tree.h"
#include "sock.h"
#include "tree.h"
#include "util.h"
#include "win.h"

View File

@ -4,11 +4,11 @@
#include <stdint.h>
#include "afd.h"
#include "epoll-socket.h"
#include "epoll.h"
#include "error.h"
#include "poll-group.h"
#include "port.h"
#include "sock.h"
#define _EP_EVENT_MASK 0xffff

View File

@ -1,5 +1,5 @@
#ifndef EPOLL_SOCK_DATA_H_
#define EPOLL_SOCK_DATA_H_
#ifndef EPOLL_SOCK_H_
#define EPOLL_SOCK_H_
#include <stdint.h>
@ -36,4 +36,4 @@ EPOLL_INTERNAL int ep_sock_feed_event(ep_port_t* port_info,
ep_sock_t* sock_info,
struct epoll_event* ev);
#endif /* EPOLL_SOCK_DATA_H_ */
#endif /* EPOLL_SOCK_H_ */