Skip to content

Commit c12dd24

Browse files
committed
refactor(lib): add more 'debug' events
1 parent 546d0a6 commit c12dd24

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/ctcp_parser.ts

+3
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ export class CtcpParser extends AddJob {
157157
delay: this.timeout,
158158
fileInfo,
159159
});
160+
this.emit('debug', 'xdccJS:: BEFORE_TCP_REQUEST_RESUME')
160161
return true;
161162
}
162163
return false;
@@ -207,13 +208,15 @@ export class CtcpParser extends AddJob {
207208
const parts = CtcpParser.ctcpMatch(text);
208209
const type = `${parts[0]} ${parts[1]}`;
209210
if (type === 'DCC ACCEPT') {
211+
this.emit('debug', 'xdccJS:: BEFORE_TCP_RESUME_ACCEPT');
210212
const resume = this.resumequeue.filter((q) => q.nick === nick);
211213
this.resumequeue = this.resumequeue.filter((q) => q.nick !== nick);
212214
if (resume.length) {
213215
return this.fileInfoBuilder(parts, resume[0]);
214216
}
215217
}
216218
if (type === 'DCC SEND') {
219+
this.emit('debug', 'xdccJS:: BEFORE_TCP_ACCEPT');
217220
return this.fileInfoBuilder(parts);
218221
}
219222
return undefined;

0 commit comments

Comments
 (0)