mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 07:57:35 +00:00
c5303272d9
- r_cons_user_fgets() is a configurable function pointer - Simplify build * Initial import of r_sysproxy - Directly copied from r1 (no api or anything working yet) * R_APIze r_vm and r_print * Make r_core_seek more consistent * Move r_cons_progressbar() to r_print * Rename visual 'x' -> 'w' (oops) - 'a' and 'w' are now compatible with cursor mode * Implement r_sys_usleep() on w32 and fix r_sys_sleep()
12 lines
202 B
C
12 lines
202 B
C
/* test with server socket shellcode */
|
|
#include <stdio.h>
|
|
|
|
extern void process_syscall();
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
printf("Esperant rpc al port 8181...\n");
|
|
process_syscall();
|
|
return 0;
|
|
}
|