{"id":18701317,"url":"https://github.com/marinx/mcastrpc","last_synced_at":"2025-04-12T08:32:15.874Z","repository":{"id":29511372,"uuid":"33049656","full_name":"MarinX/mcastrpc","owner":"MarinX","description":"Golang Multicast JSON RPC Server","archived":false,"fork":false,"pushed_at":"2017-07-15T13:51:37.000Z","size":4,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-26T03:51:12.474Z","etag":null,"topics":["go","golang","multicast","server"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MarinX.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-03-28T20:46:18.000Z","updated_at":"2023-10-26T02:28:24.000Z","dependencies_parsed_at":"2022-08-03T11:15:23.892Z","dependency_job_id":null,"html_url":"https://github.com/MarinX/mcastrpc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarinX%2Fmcastrpc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarinX%2Fmcastrpc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarinX%2Fmcastrpc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarinX%2Fmcastrpc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MarinX","download_url":"https://codeload.github.com/MarinX/mcastrpc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248540096,"owners_count":21121294,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","golang","multicast","server"],"created_at":"2024-11-07T11:41:15.142Z","updated_at":"2025-04-12T08:32:10.866Z","avatar_url":"https://github.com/MarinX.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Multicast JSON RPC Server\n\n# Description\nMulticast JSON RPC server\n\n# Installation\n    go get github.com/MarinX/mcastrpc\n# Notes\n* Multicast cannot be used in any sort of cloud, or shared infrastructure environment\n* Tested only on Linux\n* Be sure to run client on other PC, because address on network cannot be same\n\n\n# Example\n    package main\n\n    import (\n\t    \"fmt\"\n\t    \"github.com/MarinX/mcastrpc\"\n    )\n\n    type Api struct {\n    }\n\n    type Result struct {\n\t    Success bool\n\t    Message string\n    }\n\n    func main() {\n\n\t    srv := mcastrpc.NewServer()\n\n\t    err := srv.Register(new(Api), \"Api\")\n\t    if err != nil {\n\t\t    fmt.Println(err)\n\t\t    return\n\t    }\n\n        if err := srv.ListenAndServe(\"224.0.0.251\", 1712); err != nil {\n\t\t    fmt.Println(err)\n\t    }\n\n    }\n\n    func (t *Api) Say(r *string, w *Result) error {\n\t    *w = Result{\n\t\t    Success: true,\n\t\t    Message: \"Hello,\" + *r,\n\t    }\n\t    return nil\n    }\n\n# TODO\n* Create multicast client\n\n\n# License\nThis library is under the MIT License\n\n# Author\nMarin Basic \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarinx%2Fmcastrpc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarinx%2Fmcastrpc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarinx%2Fmcastrpc/lists"}