mirror of
https://github.com/amigan/aim-oscar-server.git
synced 2024-11-21 12:09:48 -05:00
update roadmap
This commit is contained in:
parent
11d76158ce
commit
1a72012747
2 changed files with 5 additions and 1 deletions
|
@ -6,5 +6,7 @@ Run your own AIM chat server, managing users and groups. Hook up a vintage clien
|
|||
|
||||
- [x] Accept and start negotiating a connection with a client
|
||||
- [x] Perform username/password authentication
|
||||
- [ ] Set up basic services
|
||||
- [x] Set up basic services
|
||||
- [ ] Online/offline status for users
|
||||
- [ ] Send IM back and forth
|
||||
- [ ] The rest of the owl
|
||||
|
|
|
@ -133,6 +133,8 @@ export default class ICBM extends BaseService {
|
|||
const messageText = messageTLV.payload.slice(startOfMessageFragment + 8, startOfMessageFragment + 8 + lengthOfMessageText).toString();
|
||||
console.log('The user said:', messageText);
|
||||
|
||||
// The client usually wants a response that the server got the message. It checks that the message
|
||||
// back has the same message ID that was sent and the user it was sent to.
|
||||
if (wantsAck) {
|
||||
const sender = this.communicator.user?.username || "";
|
||||
const msgIdBuffer = Buffer.alloc(32);
|
||||
|
|
Loading…
Reference in a new issue