forked from plietar/librespot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Authentication | ||
Once the connection is setup, the client can authenticate with the AP. For this, it sends an | ||
`ClientResponseEncrypted` message, using packet type `0xab`. | ||
|
||
A few different authentication methods are available, athough only one has really been tried, the | ||
traditional user / password based authentication. | ||
|
||
The AP will then reply with either a `APWelcome` message using packet type `0xac` if authentication | ||
is successful, or an `APLoginFailed` with packet type `0xad` otherwise. | ||
|
||
TODO: investigate other authentication methods (Zeroconf, facebook, stored credentials) |