Changeset 365
- Timestamp:
- 06/06/07 23:43:01 (2 years ago)
- Files:
-
- version_0/ext/ed.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
version_0/ext/ed.h
r337 r365 69 69 virtual int GetCommInactivityTimeout (int *value) {return 0;} 70 70 virtual int SetCommInactivityTimeout (int *value) {return 0;} 71 72 #ifdef HAVE_EPOLL 73 struct epoll_event *GetEpollEvent() { return &EpollEvent; } 74 #endif 71 75 72 76 protected: … … 83 87 bool bCloseNow; 84 88 bool bCloseAfterWriting; 89 90 #ifdef HAVE_EPOLL 91 struct epoll_event EpollEvent; 92 #endif 93 85 94 }; 86 95 … … 94 103 { 95 104 public: 96 ConnectionDescriptor ( int);105 ConnectionDescriptor (EventMachine_t*, int); 97 106 virtual ~ConnectionDescriptor(); 98 107 … … 145 154 time_t LastIo; 146 155 int InactivityTimeout; 156 157 protected: 158 EventMachine_t *MyEventMachine; 147 159 148 160 private:
