MiniOB 1
MiniOB is one mini database, helping developers to learn how database works.
载入中...
搜索中...
未找到
ini_setting.h
1/* Copyright (c) 2021 OceanBase and/or its affiliates. All rights reserved.
2miniob is licensed under Mulan PSL v2.
3You can use this software according to the terms and conditions of the Mulan PSL v2.
4You may obtain a copy of Mulan PSL v2 at:
5 http://license.coscl.org.cn/MulanPSL2
6THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
7EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
8MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
9See the Mulan PSL v2 for more details. */
10
11//
12// Created by Longda on 2021/4/14.
13//
14
15#pragma once
16
18
19#define CLIENT_ADDRESS "CLIENT_ADDRESS"
20#define MAX_CONNECTION_NUM "MAX_CONNECTION_NUM"
21#define MAX_CONNECTION_NUM_DEFAULT 8192
22#define PORT "PORT"
23#define PORT_DEFAULT 6789
24
25#define SOCKET_BUFFER_SIZE 8192
26
27#define SESSION_STAGE_NAME "SessionStage"