Syntax highlighting of server-protocol/4533178 ~( Packet_0x92)

# Packet 0x92

PSOv1 clients send this packet to register if they are told by [Packet 0x90](server-protocol/Packet_0x90) that they are a new user. The server should then respond with its own Packet 0x92 indicating a response to the login.

## Dreamcast Packet Format (Client->Server)
| Bytes | Meaning |
| --- | --- |
| 0x00 | Packet Type (0x92) |
| 0x01 | Flags (0x00) |
| 0x02-0x03 | Packet Size (0x00A4) |
| 0x04-0x13 | Unknown (Same as bytes 0x0C-0x1B of [Packet 0x93](server-protocol/Packet_0x93)) |
| 0x14-0x1B | Dreamcast Specific ID? (Same as bytes 0x3E-0x45 of [Packet 0x93](server-protocol/Packet_0x93)) |
| 0x1C-0x73 | Unused |
| 0x74-0x93 | E-mail Address |
| 0x94-0xA3 | Unused |

## Dreamcast Packet Format (Server->Client)
| Bytes | Meaning |
| --- | --- |
| 0x00 | Packet Type (0x92) |
| 0x01 | Flags (Login Response) |
| 0x02-0x03 | Packet Size (0x0004) |

### Login Responses
| Flag | Meaning |
| --- | --- |
| 0 | Invalid Serial Number and/or Access Key (Client disconnects) |
| 1 | Ok (Client sends a [Packet 0x93](server-protocol/Packet_0x93) next)) |