Skip to content

Implementación de un mecanismo "Remote Procedure Call" (RPC, por sus siglas en inglés). Primer proyecto de Sistemas operativos avanzados. Universidad Central de Venezuela.

Notifications You must be signed in to change notification settings

DunittMonagas/RPC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RPC

Para compilar la biblioteca libmicrohttpd:

./configure --prefix=<path>/RPC/libmicrohttpd --with-libcurl=<path>/RPC/curl
make
make install

Para compilar el servidor en C++11:

export LD_LIBRARY_PATH=./libmicrohttpd/lib/
g++ -std=c++11 -o ServerStub.out ServerStub.cpp -I./libmicrohttpd/include/ -L./libmicrohttpd/lib/ -lmicrohttpd

Para compilar el cliente en C++11:

export LD_LIBRARY_PATH=./curl/lib/
g++ -std=c++11 -o main.out main.cpp -I./curl/include/ -L./curl/lib/ -lcurl

About

Implementación de un mecanismo "Remote Procedure Call" (RPC, por sus siglas en inglés). Primer proyecto de Sistemas operativos avanzados. Universidad Central de Venezuela.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages