View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0001849 | unreal | ircd | public | 2004-05-31 17:50 | 2004-06-01 14:14 |
| Reporter | Troco | Assigned To | |||
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | closed | Resolution | open | ||
| Summary | 0001849: Error catching ZIP protoctl | ||||
| Description | My serv receives: Parsing: PROTOCTL NOTQUIT TOKEN NICKv2 SJOIN SJOIN2 UMODE2 VL SJ3 NS SJB64 VHP TKLEXT NICKIP ZIP CHANMODES=be,kfL,l,psmntirRcOAQKVGCuzNSMT (from *) Chose protocol TOKEN for link Chose protocol NICKv2 for link Chose protocol SJOIN for link Chose protocol SJOIN2 for link Chose protocol UMODE2 for link Chose protocol VL for link Chose protocol SJ3 for link Chose protocol NS for link Chose protocol SJB64 for link Chose protocol VHP for link Chose protocol TKLEXT for link Chose protocol NICKIP for link But ZIP isn't cathed. What is wrong? | ||||
| 3rd party modules | |||||
|
|
ZIP is used to determine if the connection should be ziplinked. If you don't have link::options::zip in the link block, then ZIP won't be recognized by the server. |
|
|
Yes, I know. Zip is set on both sides with compression-level at 9. And both ircds are compiled with ziplinks enabled. For that is so confusing. |
|
|
Works fine here, using your exact PROTOCTL line (was that an exact paste?) ** Parsing: PROTOCTL NOTQUIT TOKEN NICKv2 SJOIN SJOIN2 UMODE2 VL SJ3 NS SJB64 VHP TKLEXT NICKIP ZIP CHANMODES=be,kfL,l,psmntirRcOAQKVGCuzNSMT (from *) FindCommand PROTOCTL Chose protocol TOKEN for link Chose protocol NICKv2 for link Chose protocol SJOIN for link Chose protocol SJOIN2 for link Chose protocol UMODE2 for link Chose protocol VL for link Chose protocol SJ3 for link Chose protocol NS for link Chose protocol SJB64 for link Chose protocol VHP for link Chose protocol TKLEXT for link Chose protocol NICKIP for link Chose protocol ZIP for link ** On a sidenote, is the 'NOTQUIT' a typo or.. ;) If you would add any other extra token (eg: PROTOCTL BLAH NOTQUIT TOKEN NICKv2 SJOIN SJOIN2 UMODE2 VL SJ3 NS SJB64 VHP TKLEXT NICKIP ZIP CHANMODES=be,kfL,l,psmntirRcOAQKVGCuzNSMT) [=16 parameters] then yes it would not recognize it due to the MAXPARA limit [which is 15], in that case just send multiple PROTOCTL's. |
|
|
Ohhhhhh, it was MAXPARA. Solved. Thanks. |