[FX]Connection with only steamID

Hi !

I’m working on my server’s migration to FXServer and I have a little problem :
When I join my server, my identifier is my SteamID (ok) and my IP(not ok)

I check my server.cfg file to unable the connection with IP but i didn’t find the line.
What is the specific line to make that ?

My server.cfg :

# you probably don't want to change these!
# only change them if you're using a server with multiple network interfaces
endpoint_add_tcp "127.0.0.1:30210"
endpoint_add_udp "127.0.0.1:30210"

start mapmanager
.
.
.
.
start log


sv_scriptHookAllowed 1

# change this
#rcon_password ****

sv_hostname "^4█^0█^1█ ^1Fever Dev"

# nested configs!
#exec server_internal.cfg

#mysql
set mysql_connection_string "server=127.0.0.1;database=****;userid=****;password=****"

# loading a server icon (96x96 PNG file)
load_server_icon hello.png

# convars for use from script
set temp_convar "hey world!"

# disable announcing? clear out the master by uncommenting this
sv_master1 ""

# want to only allow players authenticated with a third-party provider like Steam?
sv_authMaxVariance 1
sv_authMinTrust 5

# add system admins
#add_ace group.admin command allow # allow all commands
#add_ace group.admin command.quit deny # but don't allow quit
#add_principal identifier.steam:110000112345678 group.admin # add the admin to the group

# player endpoint protection
sv_endpointprivacy true

How is that ‘not OK’? Identifiers are an array for a reason, your code not handling this is not our issue.

It’s not OK, because When i join my server, all my requests make two requests : one with my SteamID and one with my IP. But, with the same code on CFX, it’s only with my steamID

Then said ‘same code’ is wrong and incapable of handling multiple identifiers.