ceb5bd787c
The library exists outside bionic. It is dynamically loaded, to replace selected standard socket syscalls with versions that talk to netd. Change connect() to use the library if available. (cherry picked from commit 3a6b627a14df8111b03e452f2df4b5f4938e0e49) Change-Id: Ib6198e19dbc306521a26fcecfdf6e8424d163fc9
27 lines
538 B
ArmAsm
27 lines
538 B
ArmAsm
/* Generated by gensyscalls.py. Do not edit. */
|
|
|
|
#include <private/bionic_asm.h>
|
|
|
|
ENTRY(__connect)
|
|
pushl %ebx
|
|
pushl %ecx
|
|
.cfi_def_cfa_offset 8
|
|
.cfi_rel_offset ebx, 0
|
|
.cfi_rel_offset ecx, 4
|
|
mov $3, %ebx
|
|
mov %esp, %ecx
|
|
addl $12, %ecx
|
|
movl $__NR_socketcall, %eax
|
|
int $0x80
|
|
cmpl $-MAX_ERRNO, %eax
|
|
jb 1f
|
|
negl %eax
|
|
pushl %eax
|
|
call __set_errno
|
|
addl $4, %esp
|
|
orl $-1, %eax
|
|
1:
|
|
popl %ecx
|
|
popl %ebx
|
|
ret
|
|
END(__connect)
|