in pkg/tools/enums/socket.go [141:188]
func (f SocketFunctionName) String() string {
switch f {
case SocketFunctionNameConnect:
return "Connect"
case SocketFunctionNameAccept:
return "Accept"
case SocketFunctionNameClose:
return "Close"
case SocketFunctionNameSend:
return "Send"
case SocketFunctionNameSendto:
return "Sendto"
case SocketFunctionNameSendMsg:
return "SendMsg"
case SocketFunctionNameSendMMSg:
return "SendMMSg"
case SocketFunctionNameSendFile:
return "SendFile"
case SocketFunctionNameWrite:
return "Write"
case SocketFunctionNameWritev:
return "Writev"
case SocketFunctionNameRead:
return "Read"
case SocketFunctionNameReadv:
return "Readv"
case SocketFunctionNameRecv:
return "Recv"
case SocketFunctionNameRecvfrom:
return "Recvfrom"
case SocketFunctionNameRecvMsg:
return "RecvMsg"
case SocketFunctionNameRecvMMsg:
return "RecvMMsg"
case SocketFunctionNameResent:
return "Resent"
case SocketFunctionNameSslWrite:
return "SslWrite"
case SocketFunctionNameSslRead:
return "SslRead"
case SocketFunctionNameGoTLSWrite:
return "GoTLSWrite"
case SocketFunctionNameGoTLSRead:
return "GoTLSRead"
default:
return fmt.Sprintf("Unknown(%d)", f)
}
}