> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PFMultiplayerServerDetails

> Reference for the PFMultiplayerServerDetails struct, which describes a PlayFab Multiplayer Server connection: FQDN, IPv4 address, ports, and region.

Details about a PlayFab Multiplayer Server.

## Syntax

```cpp theme={null}
struct PFMultiplayerServerDetails {  
    const char* fqdn;  
    const char* ipv4Address;  
    const PFMultiplayerPort* ports;  
    uint32_t portCount;  
    const char* region;  
}  
```

### Members

**`fqdn`**   const char\*\
*is null-terminated*

The fully qualified domain name of the virtual machine that's hosting this multiplayer server.

**`ipv4Address`**   const char\*\
*is null-terminated*

The IPv4 address of the virtual machine that's hosting this multiplayer server.

**`ports`**   const [PFMultiplayerPort](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/structs/pfmultiplayerport)\*

The ports the multiplayer server uses.

**`portCount`**   uint32\_t

The number of ports the multiplayer server uses.

**`region`**   const char\*\
*is null-terminated*

The server's region.

## Requirements

**Header:** PFMatchmaking.h

## See also

[PFMatchmaking members](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/pfmatchmaking_members)


## Related topics

- [Using Server Backfill Tickets - Multiplayer SDK](/services/playfab/multiplayer/matchmaking/backfill-tickets-multiplayer-sdk.md)
- [PFMultiplayer C/C++ API overview - PFMatchmaking.h](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/pfmatchmaking_members.md)
- [PFMatchmakingServerBackfillTicketConfiguration](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/structs/pfmatchmakingserverbackfillticketconfiguration.md)
- [PFMatchmakingMatchDetails](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/structs/pfmatchmakingmatchdetails.md)
- [PlayFab Multiplayer C++ SDK Release Notes](/services/playfab/multiplayer/lobby/lobby-matchmaking-sdks/lobby-and-matchmaking-release-notes.md)
