Was Sie sehen, ist ein abstrakter Sockel, eine spezielle Art von Linux-spezifischem Sockel. Von Mann 7 Unix :
* abstract: an abstract socket address is distinguished by the fact that sun_path[0] is a null byte ('\0'). The socket's address in this namespace is given by the additional bytes in sun_path that are covered by the specified length of the address structure. (Null bytes in the name have no special significance.) The name has no connection with file system pathnames. When the address of an abstract socket is returned by getsockname(2), getpeername(2), and accept(2), the returned addrlen is greater than sizeof(sa_family_t) (i.e., greater than 2), and the name of the socket is contained in the first (addrlen - sizeof(sa_family_t)) bytes of sun_path. The abstract socket namespace is a nonportable Linux extension.
Während dies nicht erwähnt wird, werden abstrakte Socket-Namen mit dem ersten Zeichen @ anstelle des Null-Bytes gedruckt, wie in bind () usw. verwendet.
Wie in der Manpage erwähnt, ist die Zeichenfolge nach dem @ oder dem Null-Byte kein Dateisystempfad und kann alles sein. In Ihrem Fall ist der Pfad aus organisatorischen Gründen strukturiert (um Konflikte mit anderen abstrakten Sockets zu vermeiden).