yellows111
7488f2af43
also add new command findings: * undocumented command GSB * syntax and other errors fixed * explode a bit of xml in places that were a bit too long * find out what a "merchant cab" file is (one line of xml)
44 lines
1 KiB
Markdown
44 lines
1 KiB
Markdown
# Introduction
|
|
`FLN` is a command introduced with [MSNP2](../versions/msnp2.md).
|
|
|
|
It is a Notification Server command, without either a request or response payload.
|
|
|
|
It specifies that another user in your contact list has gone offline.
|
|
|
|
# Client/Request
|
|
This command can not be sent from the client.
|
|
|
|
# Server/Response
|
|
`FLN {user-handle} {network-id}`
|
|
|
|
Where `user-handle` is the related user's handle.
|
|
|
|
Where `network-id` is the Network Identification Number that this user is from.
|
|
Added since [MSNP14](../versions/msnp14.md).
|
|
|
|
# Examples
|
|
|
|
## User goes offline
|
|
|
|
### Without Network IDs
|
|
*Only in [MSNP2](../versions/msnp2.md) to [MSNP13](../versions/msnp13.md).*
|
|
```
|
|
S: FLN anotheruser@hotmail.com
|
|
```
|
|
|
|
### With Network IDs
|
|
*Since [MSNP14](../versions/msnp14.md).*
|
|
```
|
|
S: FLN anotheruser@hotmail.com 1
|
|
```
|
|
|
|
## Invalid context
|
|
*Inherited from being an unimplemented command.*
|
|
```
|
|
C: FLN Hotmail
|
|
```
|
|
|
|
Server disconnects client.
|
|
|
|
# Known changes
|
|
* [MSNP14](../versions/msnp14.md): Added a new parameter that denotes the Network ID of the user that is now offline.
|