summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/KernelKit/TraceSrv.h
blob: 79fbd7da93408dd7f4615b4c17cefe007af1cd9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/nekernel-org/nekernel

#ifndef KERNELKIT_TRACESRV_H
#define KERNELKIT_TRACESRV_H

#include <CompilerKit/CompilerKit.h>

namespace Kernel {

namespace TraceSrv {

  inline constexpr auto kDebugCmdLen = 256U;
  inline constexpr auto kDebugPort   = 51820;
  /// \brief Debug Magic Value
  inline constexpr auto kDebugMagic   = "NE1.0.0;";
  inline constexpr auto kDebugVersion = 0x0100;
  inline constexpr auto kDebugDelim   = ';';
  inline constexpr auto kDebugEnd     = '\r';

}  // namespace TraceSrv

}  // namespace Kernel

#endif  // !KERNELKIT_TRACESRV_H