Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cellframe-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
15
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
cellframe-sdk
Merge requests
!196
Features 4115
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Features 4115
features-4115
into
develop
Overview
0
Commits
68
Pipelines
1
Changes
25
Merged
alexey.stratulat
requested to merge
features-4115
into
develop
4 years ago
Overview
0
Commits
68
Pipelines
1
Changes
25
Expand
Implemented the JSON_RPC protocol according to the specification version 1.0.
👍
0
👎
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
dbcfbdc9
68 commits,
4 years ago
25 files
+
1437
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
25
Search (e.g. *.vue) (Ctrl+P)
dap-sdk/net/server/json_rpc/include/dap_json_rpc.h
0 → 100644
+
47
−
0
Options
/*
* Authors:
* Alexey V. Stratulat <alexey.stratulat@demlabs.net>
* DeM Labs Inc. https://demlabs.net
* DeM Labs Open source community https://gitlab.demlabs.net/cellframe/cellframe-sdk
* Copyright (c) 2017-2020
* All rights reserved.
This file is part of DAP (Deus Applications Prototypes) the open source project
DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DAP is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with any DAP based project. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include
"dap_http_simple.h"
#include
"include/http_status_code.h"
#include
"dap_strfuncs.h"
#include
"dap_json_rpc_request.h"
#include
"dap_json_rpc_request_handler.h"
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
enum
dap_json_rpc_version
{
RPC_VERSION_1
}
dap_json_rpc_version_t
;
int
dap_json_rpc_init
();
void
dap_json_rpc_deinit
();
void
dap_json_rpc_add_proc_http
(
struct
dap_http
*
sh
,
const
char
*
URL
);
#ifdef __cplusplus
}
#endif
Loading